Somewhere there’s analysis small and large patches special
## [1] "!! low !! (this document showcases only the analysis done for the low disturbance)"
# R markdown
start_time = Sys.time()
knitr::opts_chunk$set(message = FALSE,
cache = FALSE,
autodep = FALSE)
recompute_lengthy_analyses = FALSE #Lengthy analyses have been suppressed. Set recompute_analyses = TRUE to redo them.
# Disturbance & resource flows
disturbance_levels = c("low", "high")
n_disturbance_levels = length(disturbance_levels)
resource_flow_days = c(5, 9, 13, 17, 21, 25)
first_resource_flow = resource_flow_days[1]
# Sampling
total_frames = 125
volume_recorded_μl = 34.4
time_points = 0:7
time_points_without_t0 = 1:7
time_point_names = c("t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7")
sampling_days = c(0, 4, 8, 12, 16, 20, 24, 28)
first_time_point = 0
last_time_point = length(sampling_days) - 1
n_time_points = last_time_point + 1
nr_videos = c(12, 1, 1, 1, 1, 1, 2, 2) #Videos taken for each time point for each culture. At t0 we took 12 videos of the large bottle from which we started the cultures. Write why 2 at the end.
videos_taken = data.frame(time_point = 0 : 7,
nr_videos = c(12, 1, 1, 1, 1, 1, 2, 2))
n_videos_taken_t0 = nr_videos[1]
time_point_day = data.frame(
time_point = first_time_point:last_time_point,
day = sampling_days,
video_replicates = nr_videos
)
videos_to_take_off = data.frame(culture_ID = NA,
time_point = NA,
file = NA) %>%
add_row(culture_ID = 137-110, time_point = 7, file = 137) %>%
slice(-1)
n_cultures = 110
total_number_of_video_rows = sum(nr_videos * n_cultures)
# Protists
protist_species = c("Ble", "Cep", "Col", "Eug", "Eup", "Lox", "Pau", "Pca", "Spi", "Spi_te", "Tet")
protist_species_indiv_per_volume = paste0(protist_species, "_indiv_per_volume")
protist_species_indiv_per_ml = paste0(protist_species, "_indiv_per_ml")
protist_species_dominance = paste0(protist_species_indiv_per_ml, "_dominance")
protist_species_total = paste0(protist_species, "_tot_indiv")
n_protist_species = length(protist_species)
first_protist = protist_species[1]
last_protist = protist_species[n_protist_species]
species_IDD_with_13_threshold = c("Col", "Eug", "Eup", "Lox", "Pau", "Pca", "Spi_te", "Tet")
species_IDD_with_13_threshold_indiv_per_volume = paste0(species_IDD_with_13_threshold, "_indiv_per_volume")
species_IDD_with_40_threshold = c("Ble", "Cep", "Spi")
species_IDD_with_40_threshold_indiv_per_volume = paste0(species_IDD_with_40_threshold, "_indiv_per_volume")
# Patches
patches_to_take_off = 60 #Culture ID = 60 as it was spilled (small isolated, high disturbance, system nr = 40)
culture_info = read.csv(here("data", "culture_info.csv"), header = TRUE)
columns_patches = c("time_point",
"day",
"culture_ID",
"system_nr",
"disturbance",
"patch_type",
"patch_size",
"patch_size_ml",
"size_connected_patch",
"metaecosystem",
"metaecosystem_type")
columns_treatments = columns_patches[!columns_patches %in% c("system_nr", "culture_ID")]
variables_patches = c("bioarea_mm2_per_ml",
"bioarea_tot_mm2",
"indiv_per_ml",
"indiv_tot",
"species_richness",
"shannon",
"simpson",
"inv_simpson",
"evenness_pielou",
"median_body_area_µm2",
paste0(protist_species, "_indiv_per_ml"),
paste0(protist_species, "_tot_indiv"),
paste0(protist_species_indiv_per_ml, "_dominance"))
baseline_columns = paste0("baseline_", variables_patches)
patch_types_ordered = c("Small isolated",
"Small connected to small",
"Small connected to large",
"Medium isolated",
"Medium connected to medium",
"Large isolated",
"Large connected to large",
"Large connected to small")
treatments_and_controls = data.frame(
treatment = c(
"Small connected to small",
"Small connected to large",
"Medium connected to medium",
"Large connected to large",
"Large connected to small"
),
control = c(
"Small isolated",
"Small isolated",
"Medium isolated",
"Large isolated",
"Large isolated"
)
)
n_treatments = length(unique(treatments_and_controls$treatment))
n_controls = length(unique(treatments_and_controls$control))
n_replicates = 5
n_patch_types = 8
# Size classes
n_size_classes = 12
columns_classes = c(columns_patches,
"size_class_n",
"mean_class_area_µm2")
# Meta-ecosystems
metaecosystems_to_take_off = culture_info %>%
filter(culture_ID %in% patches_to_take_off) %>%
pull(system_nr) %>%
unique
system_nr_metaecosystems = culture_info %>%
filter(metaecosystem == "yes") %>%
pull(system_nr) %>%
unique
n_metaecosystems = length(system_nr_metaecosystems)
variables_metaecos = c(
"total_metaecosystem_bioarea_mm2",
"jaccard_index",
"bray_curtis",
"beta_spatial_turnover",
"beta_nestedness",
"beta_total",
"metaecosystem_richness")
metaecosystem_types_ordered = c(
"Small-Small meta-ecosystem",
"Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Large-Large meta-ecosystem",
"Small-Large meta-ecosystem",
"Small-Large isolated")
# Plotting
axis_names = data.frame(variable = NA,
axis_name= NA) %>%
add_row(variable = "day", axis_name = "Time (day)") %>%
add_row(variable = "patch_size_ml", axis_name = "Patch size (ml)") %>%
add_row(variable = "log_size_class", axis_name = "Log size (μm2)") %>%
add_row(variable = "class_indiv_per_µl", axis_name = "Density (ind/ml)") %>%
add_row(variable = "bioarea_mm2_per_ml", axis_name = "Bioarea density (mm²/ml)") %>%
add_row(variable = "bioarea_mm2_per_ml_d", axis_name = "Bioarea Density ES") %>%
add_row(variable = "bioarea_tot", axis_name = "Tot Bioarea (mm²)") %>%
add_row(variable = "total_metaecosystem_bioarea_mm2", axis_name = "Tot Bioarea (mm²)") %>%
add_row(variable = "species_richness", axis_name = "Species Richness") %>%
add_row(variable = "species_richness_d", axis_name = "Species Richness ES") %>%
add_row(variable = "mean_richness", axis_name = "mean α Diversity (Shannon)") %>%
add_row(variable = "mean_shannon", axis_name = "mean α Diversity (Shannon)") %>%
add_row(variable = "shannon", axis_name = "Biodiversity (Shannon)") %>%
add_row(variable = "shannon_d", axis_name = "Biodiversity ES (Shannon ES)") %>%
add_row(variable = "bray_curtis", axis_name = "β Diversity (Bray-Curtis)") %>%
add_row(variable = "beta_spatial_turnover", axis_name = "Turn over (Simpson pair-wise dissimilarity)") %>%
add_row(variable = "beta_nestedness", axis_name = "Nestedness (nestedness-fraction of Sorensen)") %>%
add_row(variable = "beta_total", axis_name = "Tot β Diversity (Sorensen)") %>%
add_row(variable = "metaecosystem_richness", axis_name = "γ Diversity (Species Richness)") %>%
add_row(variable = "indiv_per_ml", axis_name = "Abundance (ind/ml)") %>%
add_row(variable = "indiv_per_ml_d", axis_name = "Abundance ES") %>%
add_row(variable = "median_body_area_µm2", axis_name = "Median body size (µm²)") %>%
add_row(variable = "median_body_area_µm2_d", axis_name = "Median Body Size ES") %>%
add_row(variable = "Ble_indiv_per_ml", axis_name = "Ble Density (ind/ml)") %>%
add_row(variable = "Cep_indiv_per_ml", axis_name = "Cep Density (ind/ml)") %>%
add_row(variable = "Col_indiv_per_ml", axis_name = "Col Density (ind/ml)") %>%
add_row(variable = "Eug_indiv_per_ml", axis_name = "Eug Density (ind/ml)") %>%
add_row(variable = "Eup_indiv_per_ml", axis_name = "Eup Density (ind/ml)") %>%
add_row(variable = "Lox_indiv_per_ml", axis_name = "Lox Density (ind/ml)") %>%
add_row(variable = "Pau_indiv_per_ml", axis_name = "Pau Density (ind/ml)") %>%
add_row(variable = "Pca_indiv_per_ml", axis_name = "Pca Density (ind/ml)") %>%
add_row(variable = "Spi_indiv_per_ml", axis_name = "Spi Density (ind/ml)") %>%
add_row(variable = "Spi_te_indiv_per_ml", axis_name = "Spi te Density (ind/ml)") %>%
add_row(variable = "Tet_indiv_per_ml", axis_name = "Tet Density (ind/ml)") %>%
add_row(variable = "Ble_indiv_per_ml_d", axis_name = "Ble Density ES") %>%
add_row(variable = "Cep_indiv_per_ml_d", axis_name = "Cep Density ES") %>%
add_row(variable = "Col_indiv_per_ml_d", axis_name = "Col Density ES") %>%
add_row(variable = "Eug_indiv_per_ml_d", axis_name = "Eug Density ES") %>%
add_row(variable = "Eup_indiv_per_ml_d", axis_name = "Eup Density ES") %>%
add_row(variable = "Lox_indiv_per_ml_d", axis_name = "Lox Density ES") %>%
add_row(variable = "Pau_indiv_per_ml_d", axis_name = "Pau Density ES") %>%
add_row(variable = "Pca_indiv_per_ml_d", axis_name = "Pca Density ES") %>%
add_row(variable = "Spi_indiv_per_ml_d", axis_name = "Spi Density ES") %>%
add_row(variable = "Spi_te_indiv_per_ml_d", axis_name = "Spi te Density ES") %>%
add_row(variable = "Tet_indiv_per_ml_d", axis_name = "Tet Density ES") %>%
add_row(variable = "Ble_indiv_per_ml_dominance", axis_name = "Ble Dominance (%)") %>%
add_row(variable = "Cep_indiv_per_ml_dominance", axis_name = "Cep Dominance (%)") %>%
add_row(variable = "Col_indiv_per_ml_dominance", axis_name = "Col Dominance (%)") %>%
add_row(variable = "Eug_indiv_per_ml_dominance", axis_name = "Eug Dominance (%)") %>%
add_row(variable = "Eup_indiv_per_ml_dominance", axis_name = "Eup Dominance (%)") %>%
add_row(variable = "Lox_indiv_per_ml_dominance", axis_name = "Lox Dominance (%)") %>%
add_row(variable = "Pau_indiv_per_ml_dominance", axis_name = "Pau Dominance (%)") %>%
add_row(variable = "Pca_indiv_per_ml_dominance", axis_name = "Pca Dominance (%)") %>%
add_row(variable = "Spi_indiv_per_ml_dominance", axis_name = "Spi Dominance (%)") %>%
add_row(variable = "Spi_te_indiv_per_ml_dominance", axis_name = "Spi te Dominance (%)") %>%
add_row(variable = "Tet_indiv_per_ml_dominance", axis_name = "Tet Dominance (%)") %>%
add_row(variable = "Ble_indiv_per_ml_dominance_d", axis_name = "Ble Dominance ES") %>%
add_row(variable = "Cep_indiv_per_ml_dominance_d", axis_name = "Cep Dominance ES") %>%
add_row(variable = "Col_indiv_per_ml_dominance_d", axis_name = "Col Dominance ES") %>%
add_row(variable = "Eug_indiv_per_ml_dominance_d", axis_name = "Eug Dominance ES") %>%
add_row(variable = "Eup_indiv_per_ml_dominance_d", axis_name = "Eup Dominance ES") %>%
add_row(variable = "Lox_indiv_per_ml_dominance_d", axis_name = "Lox Dominance ES") %>%
add_row(variable = "Pau_indiv_per_ml_dominance_d", axis_name = "Pau Dominance ES") %>%
add_row(variable = "Pca_indiv_per_ml_dominance_d", axis_name = "Pca Dominance ES") %>%
add_row(variable = "Sp_indiv_per_mli_dominance_d", axis_name = "Spi Dominance ES") %>%
add_row(variable = "Spi_te_indiv_per_ml_dominance_d", axis_name = "Spi te Dominance ES") %>%
add_row(variable = "Tet_indiv_per_ml_dominance_d", axis_name = "Tet Dominance ES") %>%
add_row(variable = "dominance", axis_name = "Dominance (%)") %>%
add_row(variable = "log_abundance", axis_name = "Log Abundance + 1 (ind/mm²)") %>%
add_row(variable = "abundance_hedges_d", axis_name = "Density ES") %>%
add_row(variable = "beta_diversity_from_isolated", axis_name = "Divergence from isolated") %>%
add_row(variable = "beta_diversity_from_previous_time", axis_name = "Temporal Divergence") %>%
add_row(variable = "beta_diversity_from_previous_time_d", axis_name = "Temporal Divergence ES") %>%
add_row(variable = "evenness_pielou", axis_name = "Evenness") %>%
add_row(variable = "evenness_pielou_d", axis_name = "Evenness ES") %>%
slice(-1)
parameters_treatments = data.frame(treatment = NA,
colour = NA,
linetype = NA) %>%
add_row(treatment = "Small isolated", colour = "#bdbdbd", linetype = "solid") %>%
add_row(treatment = "Small connected to small", colour = "#feb24c", linetype = "dashed") %>%
add_row(treatment = "Small connected to large", colour = "#feb24c", linetype = "solid") %>%
add_row(treatment = "Medium isolated", colour = "#737373", linetype = "solid") %>%
add_row(treatment = "Medium connected to medium", colour = "#de2d26", linetype = "solid") %>%
add_row(treatment = "Large isolated", colour = "#000000", linetype = "solid") %>%
add_row(treatment = "Large connected to large", colour = "#3182bd", linetype = "dashed") %>%
add_row(treatment = "Large connected to small", colour = "#3182bd", linetype = "solid") %>%
add_row(treatment = "Small-Small meta-ecosystem", colour = "#fc9272", linetype = "solid") %>%
add_row(treatment = "Medium-Medium meta-ecosystem", colour = "#1b7837", linetype = "solid") %>%
add_row(treatment = "Medium-Medium isolated", colour = "#1b7837", linetype = "dashed") %>%
add_row(treatment = "Large-Large meta-ecosystem", colour = "#67000d", linetype = "solid") %>%
add_row(treatment = "Small-Large meta-ecosystem", colour = "#762a83", linetype = "solid") %>%
add_row(treatment = "Small-Large isolated", colour = "#762a83", linetype = "dashed") %>%
slice(-1)
figures_height_rmd_output = 7
legend_position = "top"
legend_width_cm = 2
size_legend = 12
size_x_axis = 13
size_y_axis = size_x_axis
boxplot_width = 2
dodging = 0.5
width_errorbar = 0.2
dodging_error_bar = 0.5
treatment_lines_linewidth = 1
treatment_points_size = 2.5
resource_flow_line_type = "solid"
resource_flow_line_colour = "#d9d9d9"
resource_flow_line_width = 0.3
zero_line_colour = "grey"
zero_line_line_type = "dotted"
zero_line_line_width = 0.5
zero_line_ES_line_type = "dotted"
zero_line_ES_colour = "grey"
zero_line_ES_line_width = 1
ggarrange_margin_top = 0
ggarrange_margin_bottom = 0
ggarrange_margin_left = 0
ggarrange_margin_right = 0
paper_width = 17.3
paper_height = 20
paper_units = "cm"
paper_res = 600
presentation_figure_size = 15
presentation_figure_width = 30
presentation_figure_height = 22
presentation_legend_size = 20
presentation_x_axis_size = 20
presentation_y_axis_size = presentation_x_axis_size
presentation_axes_size = 12
presentation_treatment_points_size = 5
presentation_treatment_linewidth = 2
presentation_figure_units = "cm"
presentation_figure_res = 600
# Modelling
first_time_point_model = 2 #Time point 2 is the first after disturbance
last_time_point_model = last_time_point
optimizer_input = 'Nelder_Mead'
method_input = ''
compar_ex = "The full and fixed models are compared to the null model."
results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA
) %>%
slice(-1)
culture_info)This table contains information about the 110 cultures of the experiment.
# Import culture informations
culture_info = read.csv(here("data", "culture_info.csv"), header = TRUE)
In this dataset (ds_individuals) each row represents an
individual at a time point.
# Import the individual data of t0. We considered cultures to be all the same at the beginning (t0). Because of this reason, we filmed only the bottles from which cultures were assembled. Because we want to plot also t0 for the different treatments, we want to assign the video of bottles to all cultures at t0.
ds_individuals_t0_not_elongated = read.csv(here("data", "individuals", "t0.csv")) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = 0,
file = as.numeric(str_extract(file, "\\d+")),
video_replicate = file) %>%
select(time_point,
day,
video_replicate,
file,
id,
N_frames,
mean_area)
ds_individuals_t0_elongated = ds_individuals_t0_not_elongated %>%
map_dfr(.x = 1 : nrow(culture_info),
.f = ~ ds_individuals_t0_not_elongated) %>%
arrange(id) %>% #Id refers to an individual
mutate(culture_ID = rep(1 : nrow(culture_info),
times = nrow(ds_individuals_t0_not_elongated))) %>%
select(time_point,
day,
video_replicate,
file,
culture_ID,
id,
N_frames,
mean_area)
expect_equal(nrow(ds_individuals_t0_not_elongated) * nrow(culture_info),
nrow(ds_individuals_t0_elongated))
#Import t1-t4
ds_individuals_t1_to_t4 = NULL
for (time_point_i in time_points_without_t0) {
ds_individuals_t1_to_t4[[time_point_i]] = read.csv(here("data",
"individuals",
paste0("t",
time_point_i,
".csv"))) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = time_point_day$day[time_point_day$time_point == time_point_i],
file = as.numeric(str_extract(file, "\\d+")),
video_replicate = ceiling(file/n_cultures)) #Until 110 video replicate = 1, then 2
}
ds_individuals_t1_to_t4 = ds_individuals_t1_to_t4 %>%
bind_rows() %>%
select(time_point,
day,
video_replicate,
file,
culture_ID,
id,
N_frames,
mean_area)
# Bind t0 with t1-t4
ds_individuals = rbind(ds_individuals_t0_elongated,
ds_individuals_t1_to_t4) %>%
left_join(culture_info,
by = "culture_ID")
# Rename and select columns
ds_individuals = ds_individuals %>%
select(
disturbance,
disturbance_volume,
time_point,
day,
video_replicate,
culture_ID,
system_nr,
file,
eco_metaeco_type,
patch_size,
patch_size_volume,
metaecosystem,
metaecosystem_type,
mean_area,
N_frames
) %>%
rename(patch_size_ml = patch_size_volume,
patch_type = eco_metaeco_type,
body_area_µm2 = mean_area)
# Rename and reorder levels
ds_individuals <- ds_individuals %>%
mutate(patch_type = case_when(patch_type == "S" ~ "Small isolated",
patch_type == "M" ~ "Medium isolated",
patch_type == "L" ~ "Large isolated",
patch_type == "S (S_S)" ~ "Small connected to small",
patch_type == "S (S_L)" ~ "Small connected to large",
patch_type == "M (M_M)" ~ "Medium connected to medium",
patch_type == "L (S_L)" ~ "Large connected to small",
patch_type == "L (L_L)" ~ "Large connected to large",
TRUE ~ patch_type),
patch_type = factor(patch_type,
levels = patch_types_ordered))
ds_individuals <- ds_individuals %>%
mutate(patch_size = case_when(patch_size == "S" ~ "Small",
patch_size == "M" ~ "Medium",
patch_size == "L" ~ "Large",
TRUE ~ patch_type),
patch_size = factor(patch_size,
levels = "Small",
"Medium",
"Large"))
ds_individuals <- ds_individuals %>%
mutate(size_connected_patch = case_when(patch_type == "Small connected to small" ~ "Small",
patch_type == "Small connected to large" ~ "Large",
patch_type == "Medium connected to medium" ~ "Medium",
patch_type == "Large connected to large" ~ "Large",
patch_type == "Large connected to small" ~ "Small",
TRUE ~ NA_character_))
# Take off problematic videos
ds_individuals_before_taking_off_videos = ds_individuals
ds_individuals = ds_individuals %>%
filter(!(time_point %in% videos_to_take_off$time_point & file %in% videos_to_take_off$file))
diff = setdiff(ds_individuals_before_taking_off_videos, ds_individuals)
expect_equal(nrow(videos_to_take_off),
nrow(expand.grid(diff$culture_ID, diff$time_point, diff$file) %>% unique()))
# Take off problematic cultures
ds_individuals_before_taking_off_cultures = ds_individuals
ds_individuals = ds_individuals %>%
filter(!culture_ID %in% patches_to_take_off)
expect_equal(setdiff(ds_individuals_before_taking_off_cultures,
ds_individuals) %>%
pull(culture_ID) %>%
unique(),
patches_to_take_off)
ds_patches)In this dataset (ds_patches) each row represents a patch
at a time point. I use the data from the 40 threshold analysis for Ble,
Cep, Spi and the data from the 13 threshold analysis for all the other
protists (Col, Eup, Lox, Pau, Pca, Spi te, Tet).
# Import & bind t0 datasets.
ds_patches_t0 = read.csv(here("data", "populations", "t0.csv")) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = 0,
video_replicate = file) %>%
select(time_point,
day,
video_replicate,
file,
bioarea_per_volume,
indiv_per_volume)
species_ID_13_threshold_t0 = read.csv(here("data", "species_ID_13_threshold", paste0("t0.csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_13_threshold_indiv_per_volume))
species_ID_40_threshold_t0 = read.csv(here("data", "species_ID_40_threshold", paste0("t0.csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_40_threshold_indiv_per_volume))
ds_patches_t0 = ds_patches_t0 %>%
left_join(species_ID_13_threshold_t0,
by = "file") %>%
left_join(species_ID_40_threshold_t0,
by = "file") %>%
mutate(file = as.numeric(str_extract(file, "\\d+")))
# Elongate t0 dataset.
ds_patches_t0_elongated <- list()
for (video_i in 1 : n_videos_taken_t0) {
single_video = ds_patches_t0 %>%
filter(file == video_i)
ds_patches_t0_elongated[[video_i]] = culture_info %>%
mutate(
time_point = 0,
day = 0,
file = single_video$file,
video_replicate = single_video$video_replicate,
bioarea_per_volume = single_video$bioarea_per_volume,
indiv_per_volume = single_video$indiv_per_volume,
Ble_indiv_per_volume = single_video$Ble_indiv_per_volume,
Cep_indiv_per_volume = single_video$Cep_indiv_per_volume,
Col_indiv_per_volume = single_video$Col_indiv_per_volume,
Eug_indiv_per_volume = single_video$Eug_indiv_per_volume,
Eup_indiv_per_volume = single_video$Eup_indiv_per_volume,
Lox_indiv_per_volume = single_video$Lox_indiv_per_volume,
Pau_indiv_per_volume = single_video$Pau_indiv_per_volume,
Pca_indiv_per_volume = single_video$Pca_indiv_per_volume,
Spi_indiv_per_volume = single_video$Spi_indiv_per_volume,
Spi_te_indiv_per_volume = single_video$Spi_te_indiv_per_volume,
Tet_indiv_per_volume = single_video$Tet_indiv_per_volume)
}
ds_patches_t0_elongated = ds_patches_t0_elongated %>%
bind_rows()
# Clean the columns of t0
ds_patches_t0 = ds_patches_t0_elongated %>%
select(
file,
time_point,
day,
culture_ID,
video_replicate,
bioarea_per_volume,
indiv_per_volume,
all_of(protist_species_indiv_per_volume))
expect_equal(nrow(ds_patches_t0), sum(n_videos_taken_t0 * n_cultures))
# Import and bind t1-t4
ds_patches_t1_to_t4 = NULL
for (time_point_i in time_points_without_t0) {
species_ID_13_threshold = read.csv(here("data",
"species_ID_13_threshold",
paste0("t", time_point_i, ".csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_13_threshold_indiv_per_volume))
species_ID_40_threshold = read.csv(here("data",
"species_ID_40_threshold",
paste0("t", time_point_i, ".csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_40_threshold_indiv_per_volume))
ds_patches_t1_to_t4[[time_point_i]] = read.csv(here("data",
"populations",
paste0("t", time_point_i, ".csv"))) %>%
arrange(file) %>%
mutate(video_replicate = rep(1 : time_point_day$video_replicates[time_point_i+1],
each = n_cultures),
day = time_point_day$day[time_point_day$time_point == time_point_i]) %>%
select(
file,
time_point,
day,
video_replicate,
file,
culture_ID,
bioarea_per_volume,
indiv_per_volume)
ds_patches_t1_to_t4[[time_point_i]] = ds_patches_t1_to_t4[[time_point_i]] %>%
left_join(species_ID_13_threshold,
by = "file") %>%
left_join(species_ID_40_threshold,
by = "file")
}
ds_patches_t1_to_t4 = ds_patches_t1_to_t4 %>%
bind_rows()
# Bind t0 with t1-t4
ds_patches = rbind(ds_patches_t0,
ds_patches_t1_to_t4) %>%
left_join(culture_info,
by = "culture_ID")
expect_equal(nrow(ds_patches),
sum(sum(time_point_day$video_replicates) * n_cultures))
# Reorder and rename columns
ds_patches = ds_patches %>%
rename(patch_size_ml = patch_size_volume) %>%
select(
file,
time_point,
day,
disturbance,
culture_ID,
system_nr,
eco_metaeco_type,
patch_size,
patch_size_ml,
metaecosystem,
metaecosystem_type,
video_replicate,
bioarea_per_volume,
indiv_per_volume,
all_of(protist_species_indiv_per_volume)
) %>%
rename(patch_type = eco_metaeco_type,
bioarea_µm2_per_μL = bioarea_per_volume) %>%
rename_all( ~ gsub("volume", "μL", .))
# Rename and reorder levels
ds_patches <- ds_patches %>%
mutate(
patch_type = case_when(
patch_type == "S" ~ "Small isolated",
patch_type == "M" ~ "Medium isolated",
patch_type == "L" ~ "Large isolated",
patch_type == "S (S_S)" ~ "Small connected to small",
patch_type == "S (S_L)" ~ "Small connected to large",
patch_type == "M (M_M)" ~ "Medium connected to medium",
patch_type == "L (S_L)" ~ "Large connected to small",
patch_type == "L (L_L)" ~ "Large connected to large",
TRUE ~ patch_type
),
patch_type = factor(x = patch_type,
levels = patch_types_ordered),
patch_size = case_when(
patch_size == "S" ~ "Small",
patch_size == "M" ~ "Medium",
patch_size == "L" ~ "Large",
TRUE ~ patch_size
),
metaecosystem_type = case_when(
metaecosystem_type == "S_S" ~ "Small-Small meta-ecosystem",
metaecosystem_type == "M_M" ~ "Medium-Medium meta-ecosystem",
metaecosystem_type == "L_L" ~ "Large-Large meta-ecosystem",
metaecosystem_type == "S_L" ~ "Small-Large meta-ecosystem",
TRUE ~ metaecosystem_type
),
size_connected_patch = case_when(
patch_type == "Small connected to small" ~ "Small",
patch_type == "Small connected to large" ~ "Large",
patch_type == "Medium connected to medium" ~ "Medium",
patch_type == "Large connected to large" ~ "Large",
patch_type == "Large connected to small" ~ "Small",
TRUE ~ NA_character_
),
time_point = as.numeric(str_extract(time_point, "\\d+")),
file = as.numeric(str_extract(file, "\\d+")),
)
# Change units of measurments to ml
ds_patches = ds_patches %>%
mutate(bioarea_µm2_per_ml = bioarea_µm2_per_μL * 10^3,
bioarea_mm2_per_ml = bioarea_µm2_per_ml * 10^(-6),
Ble_indiv_per_ml = Ble_indiv_per_μL * 10^3,
Cep_indiv_per_ml = Cep_indiv_per_μL * 10^3,
Col_indiv_per_ml = Col_indiv_per_μL * 10^3,
Eug_indiv_per_ml = Eug_indiv_per_μL * 10^3,
Eup_indiv_per_ml = Eup_indiv_per_μL * 10^3,
Lox_indiv_per_ml = Lox_indiv_per_μL * 10^3,
Pau_indiv_per_ml = Pau_indiv_per_μL * 10^3,
Pca_indiv_per_ml = Pca_indiv_per_μL * 10^3,
Spi_indiv_per_ml = Spi_indiv_per_μL * 10^3,
Spi_te_indiv_per_ml = Spi_te_indiv_per_μL * 10^3,
Tet_indiv_per_ml = Tet_indiv_per_μL * 10^3)
# Take off problematic videos
ds_patches_before_taking_off_videos = ds_patches
ds_patches = ds_patches %>%
filter(!(time_point %in% videos_to_take_off$time_point & file %in% videos_to_take_off$file))
diff = setdiff(ds_patches_before_taking_off_videos, ds_patches)
expect_equal(nrow(videos_to_take_off),
nrow(expand.grid(diff$culture_ID, diff$time_point, diff$file) %>% unique()))
# Take off problematic cultures
ds_patches_before_taking_off_cultures = ds_patches
ds_patches = ds_patches %>%
filter(!culture_ID %in% patches_to_take_off)
expect_equal(setdiff(ds_patches_before_taking_off_cultures,
ds_patches) %>%
pull(culture_ID) %>%
unique(),
patches_to_take_off)
# Average videos
ds_patches = ds_patches %>%
group_by(across(all_of(columns_patches))) %>%
summarise(across(contains("_per_ml"), mean),
across(contains("_tot"), mean)) %>%
ungroup()
expect_equal(nrow(ds_patches),
(n_cultures - length(patches_to_take_off)) * length(time_points))
# Add connection and individuals
ds_patches = ds_patches %>%
mutate(indiv_per_ml = !!rlang::parse_expr(paste(protist_species_indiv_per_ml,
collapse = " + ")))
ds_patches = ds_patches %>%
mutate(connection = ifelse(str_detect(patch_type, "isolated"),
"isolated",
"connected"),
connection = factor(x = connection,
levels = c("isolated", "connected")))
# Calculate total response variable for the whole patch
ds_patches = ds_patches %>%
mutate(bioarea_tot_mm2 = bioarea_mm2_per_ml * patch_size_ml,
indiv_tot = indiv_per_ml * patch_size_ml,
Ble_tot_indiv = Ble_indiv_per_ml * patch_size_ml,
Cep_tot_indiv = Cep_indiv_per_ml * patch_size_ml,
Col_tot_indiv = Col_indiv_per_ml * patch_size_ml,
Eug_tot_indiv = Eug_indiv_per_ml * patch_size_ml,
Eup_tot_indiv = Eup_indiv_per_ml * patch_size_ml,
Lox_tot_indiv = Lox_indiv_per_ml * patch_size_ml,
Pau_tot_indiv = Pau_indiv_per_ml * patch_size_ml,
Pca_tot_indiv = Pca_indiv_per_ml * patch_size_ml,
Spi_tot_indiv = Spi_indiv_per_ml * patch_size_ml,
Spi_te_tot_indiv = Spi_te_indiv_per_ml * patch_size_ml,
Tet_tot_indiv = Tet_indiv_per_ml * patch_size_ml)
# Calculate species dominance
ds_patches = ds_patches %>%
mutate(across(.cols = all_of(protist_species_indiv_per_ml),
.fns = list(dominance = ~ (. / indiv_per_ml) * 100),
.names = "{col}_dominance"))
expect_equal(unique(ds_patches$Ble_indiv_per_ml_dominance[ds_patches$indiv_per_ml == 0]), NaN)
if (FALSE %in% unique((ds_patches$Ble_indiv_per_ml/ds_patches$indiv_per_ml) *100 == ds_patches$Ble_indiv_per_ml_dominance)) stop()
# Calculate alpha diversity (Shannon, Simpson, Inverse Simpson, Evenness)
n_rows_ds_patches_before_calculating_alpha = nrow(ds_patches)
ds_patches = calculate.alpha.diversity()
expect_equal(max(ds_patches$species_richness),
length(protist_species))
expect_equal(nrow(ds_patches),
n_rows_ds_patches_before_calculating_alpha)
# Calculate median body size
n_rows_ds_patches_before_median_size = nrow(ds_patches)
ds_median_body_size = ds_individuals %>%
group_by(time_point,
culture_ID,
file) %>%
summarise(median_body_area_µm2 = median(body_area_µm2)) %>%
group_by(time_point,
culture_ID) %>%
summarise(median_body_area_µm2 = mean(median_body_area_µm2))
expect_true(nrow(ds_median_body_size) <= nrow(ds_patches)) #Ds median body size could be less because some cultures might be crashed and not have any individual.
ds_patches_before_full_join = ds_patches
ds_patches = full_join(ds_patches, ds_median_body_size)
expect_equal(nrow(ds_patches),
n_rows_ds_patches_before_median_size)
ds_patches_effect_size)In this dataset (ds_patches_effect_size) each row
represents a treatment at a time point. It contains the effect size of
the connection of a patch (connected vs isolated).
# Calculate the mean & sd of response variables for each treatment/control at each time point
ds_patches_effect_size = NULL
variable_nr = 0
for (variable_i in variables_patches) {
variable_nr = variable_nr + 1
ds_patches_effect_size[[variable_nr]] = ds_patches %>%
filter(time_point >= 1,
!is.na(!!sym(variable_i))) %>%
group_by(across(all_of(columns_patches[columns_patches != "culture_ID" &
columns_patches != "system_nr"]))) %>%
summarise(across(all_of(variable_i),
list(mean = mean,
sd = sd)),
sample_size = n()) %>%
rename_with( ~ paste0(variable_i, "_sample_size"),
matches("sample_size"))
}
ds_patches_effect_size <- reduce(ds_patches_effect_size,
full_join,
by = columns_patches[columns_patches != "culture_ID" &
columns_patches != "system_nr"])
expect_equal(nrow(ds_patches_effect_size),
n_patch_types * (n_time_points-1) * n_disturbance_levels)
# Calculate the effect size (Hedge's d) for each treatment at each time point
for (variable_i in variables_patches) {
ds_patches_effect_size <- ds_patches_effect_size %>%
mutate(
!!paste0(variable_i, "_d") := NA,
!!paste0(variable_i, "_d_upper") := NA,
!!paste0(variable_i, "_d_lower") := NA
)
}
row_n = 0
for (treatment_input in treatments_and_controls$treatment) {
for (time_point_input in time_points) {
row_n = row_n + 1
control_input = treatments_and_controls$control[
treatments_and_controls$treatment == treatment_input
]
treatment_row = ds_patches_effect_size %>%
filter(patch_type == treatment_input,
time_point == time_point_input)
control_row = ds_patches_effect_size %>%
filter(patch_type == control_input,
time_point == time_point_input)
for (response_variable in variables_patches) {
hedges_d = calculate.hedges_d(
treatment_row[[paste0(response_variable, "_mean")]],
treatment_row[[paste0(response_variable, "_sd")]],
treatment_row[[paste0(response_variable, "_sample_size")]],
control_row[[paste0(response_variable, "_mean")]],
control_row[[paste0(response_variable, "_sd")]],
control_row[[paste0(response_variable, "_sample_size")]]
)
ds_patches_effect_size[[paste0(response_variable, "_d")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$d
ds_patches_effect_size[[paste0(response_variable, "_d_upper")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$upper_CI
ds_patches_effect_size[[paste0(response_variable, "_d_lower")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$lower_CI
}
}
}
expect_equal(nrow(ds_patches_effect_size),
n_patch_types * (n_time_points-1) * n_disturbance_levels)
ds_metaecosystems)In this dataset (ds_metaecosystems) each row represents
a meta-ecosystem or a two-patch isolated system at a time point.
#Find combinations of patches in isolated two-patch systems.
ID_isolated_S_low = ds_patches %>%
filter(patch_type == "Small isolated",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_isolated_M_low = ds_patches %>%
filter(patch_type == "Medium isolated",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_isolated_L_low = ds_patches %>%
filter(patch_type == "Large isolated",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_isolated_S_high = ds_patches %>%
filter(patch_type == "Small isolated",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
ID_isolated_M_high = ds_patches %>%
filter(patch_type == "Medium isolated",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
ID_isolated_L_high = ds_patches %>%
filter(patch_type == "Large isolated",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
# Find combinations of patches to create different two-patch isolated systems
combinations_S_and_L_low = crossing(ID_isolated_S_low,
ID_isolated_L_low) %>%
mutate(disturbance = "low",
metaecosystem_type = "Small-Large isolated") %>%
rename(ID_first_patch = ID_isolated_S_low,
ID_second_patch = ID_isolated_L_low) %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
combinations_S_and_L_high = crossing(ID_isolated_S_high,
ID_isolated_L_high) %>%
mutate(disturbance = "high",
metaecosystem_type = "Small-Large isolated") %>%
rename(ID_first_patch = ID_isolated_S_high,
ID_second_patch = ID_isolated_L_high) %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
combinations_M_and_M_low = combinat::combn(ID_isolated_M_low,
m = 2) %>%
t() %>%
as.data.frame() %>%
rename(ID_first_patch = V1,
ID_second_patch = V2) %>%
mutate(disturbance = "low",
metaecosystem_type = "Medium-Medium isolated") %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
combinations_M_and_M_high = combinat::combn(ID_isolated_M_high,
m = 2) %>%
t() %>%
as.data.frame() %>%
rename(ID_first_patch = V1,
ID_second_patch = V2) %>%
mutate(disturbance = "high",
metaecosystem_type = "Medium-Medium isolated") %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
# Bind combinations
combinations_isolated_systems = rbind(combinations_S_and_L_low,
combinations_S_and_L_high,
combinations_M_and_M_low,
combinations_M_and_M_high) %>%
mutate(system_nr = 1001:(1000 + nrow(.))) %>%
select(system_nr,
disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
# Find combinations of patches that were connected to form meta-ecosystems.
combinations_metaecos = ds_patches %>%
filter(time_point == 0,
metaecosystem == "yes") %>%
select(system_nr,
disturbance,
metaecosystem_type,
culture_ID) %>%
group_by(system_nr,
disturbance,
metaecosystem_type) %>%
summarise(ID_first_patch = (mean(culture_ID) - 0.5),
ID_second_patch = (mean(culture_ID) + 0.5)) %>%
as.data.frame()
#Bind isolated two-patch systems and meta-ecosystems
patch_combinations = rbind(combinations_isolated_systems,
combinations_metaecos) %>%
mutate(connection = ifelse(metaecosystem_type %in% c("Medium-Medium isolated",
"Small-Large isolated"),
yes = "isolated",
no = "connected"),
patches_combined = paste0(ID_first_patch, "|", ID_second_patch))
n_patches_combinations = nrow(patch_combinations)
#Create sets for SL isolated, where in each set a small and a large patches are paired differently. To do so, I keep the small patches on the same order and perform permutations on large patches.
SL_isolated_sys_sets <- vector("list",
length(disturbance_levels))
for (disturbance_i in 1:length(disturbance_levels)) {
ID_small_patches = ds_patches %>%
filter(disturbance == disturbance_levels[disturbance_i],
patch_type == "Small isolated") %>%
pull(culture_ID) %>%
unique()
ID_large_patches = ds_patches %>%
filter(disturbance == disturbance_levels[disturbance_i],
patch_type == "Large isolated") %>%
pull(culture_ID) %>%
unique()
#Force small and large patches vectors to have the same length
length_difference <- length(ID_small_patches) - length(ID_large_patches)
if (length_difference > 0) {
ID_large_patches = c(ID_large_patches,
rep("Patch taken off",
times = abs(length(ID_small_patches) -
length(ID_large_patches))))
} else if (length_difference < 0) {
ID_small_patches = c(ID_small_patches,
rep("Patch taken off",
times = abs(length(ID_large_patches) -
length(ID_small_patches))))
}
# Create dataframe
permutations_large = permn(ID_large_patches)
SL_isolated_sys_sets[[disturbance_i]] = data.frame(
disturbance = disturbance_levels[disturbance_i],
metaecosystem_type = "Small-Large isolated",
connection = "isolated",
ID_first_patch = rep(ID_small_patches, times = length(permutations_large)),
ID_second_patch = unlist(permutations_large),
set = rep(1 : length(permutations_large), each = length(ID_small_patches)))
expect_equal(nrow(SL_isolated_sys_sets[[disturbance_i]]),
length(ID_small_patches) * length(permutations_large))
SL_isolated_sys_sets[[disturbance_i]] = SL_isolated_sys_sets[[disturbance_i]] %>%
filter(!ID_first_patch == "Patch taken off",
!ID_second_patch == "Patch taken off") %>%
mutate(ID_first_patch = as.double(ID_first_patch),
ID_second_patch = as.double(ID_second_patch)) %>%
full_join(patch_combinations %>%
filter(disturbance == disturbance_levels[disturbance_i],
metaecosystem_type == "Small-Large isolated")) #Add system_nr & patches_combined
}
SL_isolated_sys_sets_before_binding = SL_isolated_sys_sets
SL_isolated_sys_sets = SL_isolated_sys_sets %>%
bind_rows()
expect_equal(nrow(SL_isolated_sys_sets),
nrow(SL_isolated_sys_sets_before_binding[[1]]) + nrow(SL_isolated_sys_sets_before_binding[[2]]))
expect_equal(length(SL_isolated_sys_sets %>%
pull(system_nr) %>%
unique()),
length(patch_combinations %>%
filter(metaecosystem_type == "Small-Large isolated") %>%
pull(system_nr) %>%
unique()))
#WORK HERE
#Create sets for MM isolated, where in each set two medium patches small are paired differently. To do so, I ...
#Initialise MM_isolated_sets. Assign 10^4 rows to each matrix so that we have enough rows not to run out of them when we try to assign values to them. Assign 4 columns which will include culture_ID of the first system, second culture_ID of the fist system, culture_ID of the second system, and second culture_ID of the second system.
MM_isolated_sets = NULL
for(disturbance_i in 1:length(disturbance_levels)){
MM_isolated_sets[[disturbance_i]] <- matrix(nrow = 10 ^ 4,
ncol = 4)
}
for (disturbance_i in 1:length(disturbance_levels)) {
ID_medium_patches = ds_patches %>%
filter(disturbance == disturbance_levels[disturbance_i],
patch_type == "Medium isolated") %>%
pull(culture_ID) %>%
unique()
MM_isolated_systems = combn(ID_medium_patches,
2) %>%
t()
matrix_row = 0
for (first_system_i in 1:nrow(MM_isolated_systems)) {
#Find culture IDs of the first system (what's the first system?)
first_system = MM_isolated_systems[first_system_i, ]
for (second_system_i in 1:nrow(MM_isolated_systems)) {
#Find culture IDs of the second system (what's the second system?)
second_system = MM_isolated_systems[second_system_i, ]
shared_elements_among_systems = intersect(first_system,
second_system)
if (length(shared_elements_among_systems) == 0) {
matrix_row = matrix_row + 1
#Make first and second system into a set
MM_isolated_sets[[disturbance_i]][matrix_row,] = c(first_system,
second_system)
print(MM_isolated_sets[[disturbance_i]][matrix_row,])
}
}
}
#Tidy the dataset with all the patch combinations
MM_isolated_sets[[disturbance_i]] = MM_isolated_sets[[disturbance_i]] %>%
as.data.frame() %>%
drop_na()
expect_equal(MM_isolated_sets[[disturbance_i]] %>%
filter(V1 == V2 | V1 == V3 | V1 == V4 | V2 == V3 | V2 == V4 | V3 == V4) %>%
nrow(),
0)
#Reorder the dataset with all the patch combinations
MM_isolated_sets_reordered = data.frame(ID_first_patch = NA,
ID_second_patch = NA,
set = NA)
for (set_input in 1:nrow(MM_isolated_sets[[disturbance_i]])) {
MM_isolated_sets_reordered = MM_isolated_sets_reordered %>%
add_row(
ID_first_patch = MM_isolated_sets[[disturbance_i]][set_input, 1],
ID_second_patch = MM_isolated_sets[[disturbance_i]][set_input, 2],
set = set_input
) %>%
add_row(
ID_first_patch = MM_isolated_sets[[disturbance_i]][set_input, 3],
ID_second_patch = MM_isolated_sets[[disturbance_i]][set_input, 4],
set = set_input
)
}
#Add to a list
MM_isolated_sets[[disturbance_i]] = MM_isolated_sets_reordered %>%
drop_na() %>%
mutate(
disturbance = disturbance_levels[disturbance_i],
metaecosystem_type = "Medium-Medium isolated",
connection = "isolated"
)
#Add system nr
ID_combinations_MM_isolated = patch_combinations %>%
filter(disturbance == disturbance_levels[disturbance_i],
metaecosystem_type == "Medium-Medium isolated")
MM_isolated_sets[[disturbance_i]] = full_join(MM_isolated_sets[[disturbance_i]],
ID_combinations_MM_isolated)
}
## [1] 6 7 8 9
## [1] 6 7 8 10
## [1] 6 7 9 10
## [1] 6 8 7 9
## [1] 6 8 7 10
## [1] 6 8 9 10
## [1] 6 9 7 8
## [1] 6 9 7 10
## [1] 6 9 8 10
## [1] 6 10 7 8
## [1] 6 10 7 9
## [1] 6 10 8 9
## [1] 7 8 6 9
## [1] 7 8 6 10
## [1] 7 8 9 10
## [1] 7 9 6 8
## [1] 7 9 6 10
## [1] 7 9 8 10
## [1] 7 10 6 8
## [1] 7 10 6 9
## [1] 7 10 8 9
## [1] 8 9 6 7
## [1] 8 9 6 10
## [1] 8 9 7 10
## [1] 8 10 6 7
## [1] 8 10 6 9
## [1] 8 10 7 9
## [1] 9 10 6 7
## [1] 9 10 6 8
## [1] 9 10 7 8
## [1] 61 62 63 64
## [1] 61 62 63 65
## [1] 61 62 64 65
## [1] 61 63 62 64
## [1] 61 63 62 65
## [1] 61 63 64 65
## [1] 61 64 62 63
## [1] 61 64 62 65
## [1] 61 64 63 65
## [1] 61 65 62 63
## [1] 61 65 62 64
## [1] 61 65 63 64
## [1] 62 63 61 64
## [1] 62 63 61 65
## [1] 62 63 64 65
## [1] 62 64 61 63
## [1] 62 64 61 65
## [1] 62 64 63 65
## [1] 62 65 61 63
## [1] 62 65 61 64
## [1] 62 65 63 64
## [1] 63 64 61 62
## [1] 63 64 61 65
## [1] 63 64 62 65
## [1] 63 65 61 62
## [1] 63 65 61 64
## [1] 63 65 62 64
## [1] 64 65 61 62
## [1] 64 65 61 63
## [1] 64 65 62 63
#Bind all sets of MM isolated
MM_isolated_sets = MM_isolated_sets %>%
bind_rows()
expect_equal(length(MM_isolated_sets %>%
pull(system_nr) %>%
unique()),
length(patch_combinations %>%
filter(metaecosystem_type == "Medium-Medium isolated") %>%
pull(system_nr) %>%
unique()))
#Bind SL and MM isolated systems
isolated_combinations_sets = rbind(SL_isolated_sys_sets,
MM_isolated_sets) %>%
select(disturbance,
metaecosystem_type,
connection,
set,
system_nr,
ID_first_patch,
ID_second_patch)
Each row is a meta-ecosystem.
It contains also “fake” meta-ecosystems which I created from
isolated patches (metaecosystem type = Small-Large isolated
&
metaecosystem type = Medium-Medium isolated).
Warning appear after the following code, as:
#Compute meta-ecosystems for each time point
ds_metaecosystems = NULL
row_n = 0
for (combination in 1:n_patches_combinations) {
for (time_point_input in time_points) {
row_n = row_n + 1
current_day = sampling_days[time_point_input + 1]
current_system_nr = patch_combinations[combination, ]$system_nr
current_combination = patch_combinations[combination, ]$patches_combined
current_disturbance = patch_combinations[combination, ]$disturbance
current_metaeco_type = patch_combinations[combination, ]$metaecosystem_type
current_IDs = c(patch_combinations[combination, ]$ID_first_patch,
patch_combinations[combination, ]$ID_second_patch)
if (current_system_nr %in% metaecosystems_to_take_off)
next
if (current_IDs[1] == current_IDs[2])
next
species_vector_two_patches = ds_patches %>%
filter(time_point == time_point_input,
culture_ID %in% current_IDs) %>%
ungroup() %>%
select(all_of(protist_species_indiv_per_ml))
absence_presence_two_patches <-
ifelse(species_vector_two_patches > 0, 1, 0)
#Alpha diversity: Shannon (mean between the two patches)
shannon_patch_1 = diversity(species_vector_two_patches[1, ], index = "shannon")
shannon_patch_2 = diversity(species_vector_two_patches[2, ], index = "shannon")
shannon_value = (shannon_patch_1 + shannon_patch_2) / 2
#Alpha diversity: Species richness (mean between the two patches)
richness_patch_1 = specnumber(species_vector_two_patches[1, ])
richness_patch_2 = specnumber(species_vector_two_patches[2, ])
mean_richness_value = (richness_patch_1 + richness_patch_2) / 2
#Beta diversity: Jaccard
jaccard_index_value = vegdist(species_vector_two_patches,
method = "jaccard") %>%
as.numeric()
#Beta diversity: Bray Curtis
bray_curtis_value = vegdist(species_vector_two_patches,
method = "bray") %>%
as.numeric()
#Beta diversity: partitioning of beta diversity from Sorensen index into turnover (Simpson pair-wise dissimilarity) and nestedness (nestedness-fraction of Sorensen)
betapart_core_object = betapart.core(absence_presence_two_patches)
beta_spatial_turnover_value = beta.pair(betapart_core_object)$beta.sim %>% as.double()
beta_nestedness_value = beta.pair(betapart_core_object)$beta.sne %>% as.double()
beta_total_value = beta.pair(betapart_core_object)$beta.sor %>% as.double()
#Gamma diversity: Meta-ecosystem richness
metaecosystem_richness_value = colSums(species_vector_two_patches) %>%
specnumber()
#Put everything together
ds_metaecosystems[[row_n]] = ds_patches %>%
filter(culture_ID %in% current_IDs,
time_point == time_point_input) %>%
summarise(
total_metaecosystem_bioarea_mm2 = sum(bioarea_tot_mm2),
total_metaecosystem_Ble_indiv = sum(Ble_tot_indiv),
total_metaecosystem_Cep_indiv = sum(Cep_tot_indiv),
total_metaecosystem_Col_indiv = sum(Col_tot_indiv),
total_metaecosystem_Eug_indiv = sum(Eug_tot_indiv),
total_metaecosystem_Eup_indiv = sum(Eup_tot_indiv),
total_metaecosystem_Lox_indiv = sum(Lox_tot_indiv),
total_metaecosystem_Pau_indiv = sum(Pau_tot_indiv),
total_metaecosystem_Pca_indiv = sum(Pca_tot_indiv),
total_metaecosystem_Spi_indiv = sum(Spi_tot_indiv),
total_metaecosystem_Spi_te_indiv = sum(Spi_te_tot_indiv),
total_metaecosystem_Tet_indiv = sum(Tet_tot_indiv)
) %>%
mutate(
system_nr = current_system_nr,
patches_combined = current_combination,
metaecosystem_type = current_metaeco_type,
disturbance = current_disturbance,
time_point = time_point_input,
day = current_day,
jaccard_index = jaccard_index_value,
bray_curtis = bray_curtis_value,
beta_spatial_turnover = beta_spatial_turnover_value,
beta_nestedness = beta_nestedness_value,
beta_total = beta_total_value,
metaecosystem_richness = metaecosystem_richness_value,
mean_shannon = shannon_value,
mean_richness = mean_richness_value
) %>%
ungroup()
}
}
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): missing
## values in results
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "bray"): missing values
## in results
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): missing
## values in results
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "bray"): missing values
## in results
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
ds_metaecosystems = ds_metaecosystems %>%
bind_rows() %>%
as.data.frame() %>%
select(
time_point,
day,
system_nr,
patches_combined,
disturbance,
metaecosystem_type,
mean_shannon,
mean_richness,
jaccard_index,
bray_curtis,
beta_spatial_turnover,
beta_nestedness,
beta_total,
metaecosystem_richness,
total_metaecosystem_bioarea_mm2,
paste0("total_metaecosystem_", protist_species, "_indiv")
)
expect_equal(nrow(ds_metaecosystems),
n_time_points * n_patches_combinations)
#Add column connection
ds_metaecosystems$connection <-
ifelse(
ds_metaecosystems$metaecosystem_type %in% c("Medium-Medium isolated",
"Small-Large isolated"),
yes = "isolated",
no = "connected"
)
#Add column patch size symmetry
ds_metaecosystems$patch_size_symmetry <-
ifelse(
ds_metaecosystems$metaecosystem_type %in% c("Small-Large isolated",
"Small-Large meta-ecosystem"),
yes = "asymmetric",
no = "symmetric"
)
#Reorder the meta-ecosystems
ds_metaecosystems = ds_metaecosystems %>%
mutate(metaecosystem_type = factor(metaecosystem_type,
levels = metaecosystem_types_ordered))
#Join ...
full_join(ds_metaecosystems,
isolated_combinations_sets)
## Warning in full_join(ds_metaecosystems, isolated_combinations_sets): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 1 of `x` matches multiple rows in `y`.
## ℹ Row 1 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
## "many-to-many"` to silence this warning.
## time_point day system_nr patches_combined disturbance metaecosystem_type
## 1 0 0 1001 1|11 low Small-Large isolated
## 2 0 0 1001 1|11 low Small-Large isolated
## 3 0 0 1001 1|11 low Small-Large isolated
## 4 0 0 1001 1|11 low Small-Large isolated
## 5 0 0 1001 1|11 low Small-Large isolated
## 6 0 0 1001 1|11 low Small-Large isolated
## 7 0 0 1001 1|11 low Small-Large isolated
## 8 0 0 1001 1|11 low Small-Large isolated
## 9 0 0 1001 1|11 low Small-Large isolated
## 10 0 0 1001 1|11 low Small-Large isolated
## 11 0 0 1001 1|11 low Small-Large isolated
## 12 0 0 1001 1|11 low Small-Large isolated
## 13 0 0 1001 1|11 low Small-Large isolated
## 14 0 0 1001 1|11 low Small-Large isolated
## 15 0 0 1001 1|11 low Small-Large isolated
## 16 0 0 1001 1|11 low Small-Large isolated
## 17 0 0 1001 1|11 low Small-Large isolated
## 18 0 0 1001 1|11 low Small-Large isolated
## 19 0 0 1001 1|11 low Small-Large isolated
## 20 0 0 1001 1|11 low Small-Large isolated
## 21 0 0 1001 1|11 low Small-Large isolated
## 22 0 0 1001 1|11 low Small-Large isolated
## 23 0 0 1001 1|11 low Small-Large isolated
## 24 0 0 1001 1|11 low Small-Large isolated
## 25 1 4 1001 1|11 low Small-Large isolated
## 26 1 4 1001 1|11 low Small-Large isolated
## 27 1 4 1001 1|11 low Small-Large isolated
## 28 1 4 1001 1|11 low Small-Large isolated
## 29 1 4 1001 1|11 low Small-Large isolated
## 30 1 4 1001 1|11 low Small-Large isolated
## 31 1 4 1001 1|11 low Small-Large isolated
## 32 1 4 1001 1|11 low Small-Large isolated
## 33 1 4 1001 1|11 low Small-Large isolated
## 34 1 4 1001 1|11 low Small-Large isolated
## 35 1 4 1001 1|11 low Small-Large isolated
## 36 1 4 1001 1|11 low Small-Large isolated
## 37 1 4 1001 1|11 low Small-Large isolated
## 38 1 4 1001 1|11 low Small-Large isolated
## 39 1 4 1001 1|11 low Small-Large isolated
## 40 1 4 1001 1|11 low Small-Large isolated
## 41 1 4 1001 1|11 low Small-Large isolated
## 42 1 4 1001 1|11 low Small-Large isolated
## 43 1 4 1001 1|11 low Small-Large isolated
## 44 1 4 1001 1|11 low Small-Large isolated
## 45 1 4 1001 1|11 low Small-Large isolated
## 46 1 4 1001 1|11 low Small-Large isolated
## 47 1 4 1001 1|11 low Small-Large isolated
## 48 1 4 1001 1|11 low Small-Large isolated
## 49 2 8 1001 1|11 low Small-Large isolated
## 50 2 8 1001 1|11 low Small-Large isolated
## 51 2 8 1001 1|11 low Small-Large isolated
## 52 2 8 1001 1|11 low Small-Large isolated
## 53 2 8 1001 1|11 low Small-Large isolated
## 54 2 8 1001 1|11 low Small-Large isolated
## 55 2 8 1001 1|11 low Small-Large isolated
## 56 2 8 1001 1|11 low Small-Large isolated
## 57 2 8 1001 1|11 low Small-Large isolated
## 58 2 8 1001 1|11 low Small-Large isolated
## 59 2 8 1001 1|11 low Small-Large isolated
## 60 2 8 1001 1|11 low Small-Large isolated
## 61 2 8 1001 1|11 low Small-Large isolated
## 62 2 8 1001 1|11 low Small-Large isolated
## 63 2 8 1001 1|11 low Small-Large isolated
## 64 2 8 1001 1|11 low Small-Large isolated
## 65 2 8 1001 1|11 low Small-Large isolated
## 66 2 8 1001 1|11 low Small-Large isolated
## 67 2 8 1001 1|11 low Small-Large isolated
## 68 2 8 1001 1|11 low Small-Large isolated
## 69 2 8 1001 1|11 low Small-Large isolated
## 70 2 8 1001 1|11 low Small-Large isolated
## 71 2 8 1001 1|11 low Small-Large isolated
## 72 2 8 1001 1|11 low Small-Large isolated
## 73 3 12 1001 1|11 low Small-Large isolated
## 74 3 12 1001 1|11 low Small-Large isolated
## 75 3 12 1001 1|11 low Small-Large isolated
## 76 3 12 1001 1|11 low Small-Large isolated
## 77 3 12 1001 1|11 low Small-Large isolated
## 78 3 12 1001 1|11 low Small-Large isolated
## 79 3 12 1001 1|11 low Small-Large isolated
## 80 3 12 1001 1|11 low Small-Large isolated
## 81 3 12 1001 1|11 low Small-Large isolated
## 82 3 12 1001 1|11 low Small-Large isolated
## 83 3 12 1001 1|11 low Small-Large isolated
## 84 3 12 1001 1|11 low Small-Large isolated
## 85 3 12 1001 1|11 low Small-Large isolated
## 86 3 12 1001 1|11 low Small-Large isolated
## 87 3 12 1001 1|11 low Small-Large isolated
## 88 3 12 1001 1|11 low Small-Large isolated
## 89 3 12 1001 1|11 low Small-Large isolated
## 90 3 12 1001 1|11 low Small-Large isolated
## 91 3 12 1001 1|11 low Small-Large isolated
## 92 3 12 1001 1|11 low Small-Large isolated
## 93 3 12 1001 1|11 low Small-Large isolated
## 94 3 12 1001 1|11 low Small-Large isolated
## 95 3 12 1001 1|11 low Small-Large isolated
## 96 3 12 1001 1|11 low Small-Large isolated
## 97 4 16 1001 1|11 low Small-Large isolated
## 98 4 16 1001 1|11 low Small-Large isolated
## 99 4 16 1001 1|11 low Small-Large isolated
## 100 4 16 1001 1|11 low Small-Large isolated
## 101 4 16 1001 1|11 low Small-Large isolated
## 102 4 16 1001 1|11 low Small-Large isolated
## 103 4 16 1001 1|11 low Small-Large isolated
## 104 4 16 1001 1|11 low Small-Large isolated
## 105 4 16 1001 1|11 low Small-Large isolated
## 106 4 16 1001 1|11 low Small-Large isolated
## 107 4 16 1001 1|11 low Small-Large isolated
## 108 4 16 1001 1|11 low Small-Large isolated
## 109 4 16 1001 1|11 low Small-Large isolated
## 110 4 16 1001 1|11 low Small-Large isolated
## 111 4 16 1001 1|11 low Small-Large isolated
## 112 4 16 1001 1|11 low Small-Large isolated
## 113 4 16 1001 1|11 low Small-Large isolated
## 114 4 16 1001 1|11 low Small-Large isolated
## 115 4 16 1001 1|11 low Small-Large isolated
## 116 4 16 1001 1|11 low Small-Large isolated
## 117 4 16 1001 1|11 low Small-Large isolated
## 118 4 16 1001 1|11 low Small-Large isolated
## 119 4 16 1001 1|11 low Small-Large isolated
## 120 4 16 1001 1|11 low Small-Large isolated
## 121 5 20 1001 1|11 low Small-Large isolated
## 122 5 20 1001 1|11 low Small-Large isolated
## 123 5 20 1001 1|11 low Small-Large isolated
## 124 5 20 1001 1|11 low Small-Large isolated
## 125 5 20 1001 1|11 low Small-Large isolated
## 126 5 20 1001 1|11 low Small-Large isolated
## 127 5 20 1001 1|11 low Small-Large isolated
## 128 5 20 1001 1|11 low Small-Large isolated
## 129 5 20 1001 1|11 low Small-Large isolated
## 130 5 20 1001 1|11 low Small-Large isolated
## 131 5 20 1001 1|11 low Small-Large isolated
## 132 5 20 1001 1|11 low Small-Large isolated
## 133 5 20 1001 1|11 low Small-Large isolated
## 134 5 20 1001 1|11 low Small-Large isolated
## 135 5 20 1001 1|11 low Small-Large isolated
## 136 5 20 1001 1|11 low Small-Large isolated
## 137 5 20 1001 1|11 low Small-Large isolated
## 138 5 20 1001 1|11 low Small-Large isolated
## 139 5 20 1001 1|11 low Small-Large isolated
## 140 5 20 1001 1|11 low Small-Large isolated
## 141 5 20 1001 1|11 low Small-Large isolated
## 142 5 20 1001 1|11 low Small-Large isolated
## 143 5 20 1001 1|11 low Small-Large isolated
## 144 5 20 1001 1|11 low Small-Large isolated
## 145 6 24 1001 1|11 low Small-Large isolated
## 146 6 24 1001 1|11 low Small-Large isolated
## 147 6 24 1001 1|11 low Small-Large isolated
## 148 6 24 1001 1|11 low Small-Large isolated
## 149 6 24 1001 1|11 low Small-Large isolated
## 150 6 24 1001 1|11 low Small-Large isolated
## 151 6 24 1001 1|11 low Small-Large isolated
## 152 6 24 1001 1|11 low Small-Large isolated
## 153 6 24 1001 1|11 low Small-Large isolated
## 154 6 24 1001 1|11 low Small-Large isolated
## 155 6 24 1001 1|11 low Small-Large isolated
## 156 6 24 1001 1|11 low Small-Large isolated
## 157 6 24 1001 1|11 low Small-Large isolated
## 158 6 24 1001 1|11 low Small-Large isolated
## 159 6 24 1001 1|11 low Small-Large isolated
## 160 6 24 1001 1|11 low Small-Large isolated
## 161 6 24 1001 1|11 low Small-Large isolated
## 162 6 24 1001 1|11 low Small-Large isolated
## 163 6 24 1001 1|11 low Small-Large isolated
## 164 6 24 1001 1|11 low Small-Large isolated
## 165 6 24 1001 1|11 low Small-Large isolated
## 166 6 24 1001 1|11 low Small-Large isolated
## 167 6 24 1001 1|11 low Small-Large isolated
## 168 6 24 1001 1|11 low Small-Large isolated
## 169 7 28 1001 1|11 low Small-Large isolated
## 170 7 28 1001 1|11 low Small-Large isolated
## 171 7 28 1001 1|11 low Small-Large isolated
## 172 7 28 1001 1|11 low Small-Large isolated
## 173 7 28 1001 1|11 low Small-Large isolated
## 174 7 28 1001 1|11 low Small-Large isolated
## 175 7 28 1001 1|11 low Small-Large isolated
## 176 7 28 1001 1|11 low Small-Large isolated
## 177 7 28 1001 1|11 low Small-Large isolated
## 178 7 28 1001 1|11 low Small-Large isolated
## 179 7 28 1001 1|11 low Small-Large isolated
## 180 7 28 1001 1|11 low Small-Large isolated
## 181 7 28 1001 1|11 low Small-Large isolated
## 182 7 28 1001 1|11 low Small-Large isolated
## 183 7 28 1001 1|11 low Small-Large isolated
## 184 7 28 1001 1|11 low Small-Large isolated
## 185 7 28 1001 1|11 low Small-Large isolated
## 186 7 28 1001 1|11 low Small-Large isolated
## 187 7 28 1001 1|11 low Small-Large isolated
## 188 7 28 1001 1|11 low Small-Large isolated
## 189 7 28 1001 1|11 low Small-Large isolated
## 190 7 28 1001 1|11 low Small-Large isolated
## 191 7 28 1001 1|11 low Small-Large isolated
## 192 7 28 1001 1|11 low Small-Large isolated
## 193 0 0 1002 1|12 low Small-Large isolated
## 194 0 0 1002 1|12 low Small-Large isolated
## 195 0 0 1002 1|12 low Small-Large isolated
## 196 0 0 1002 1|12 low Small-Large isolated
## 197 0 0 1002 1|12 low Small-Large isolated
## 198 0 0 1002 1|12 low Small-Large isolated
## 199 0 0 1002 1|12 low Small-Large isolated
## 200 0 0 1002 1|12 low Small-Large isolated
## 201 0 0 1002 1|12 low Small-Large isolated
## 202 0 0 1002 1|12 low Small-Large isolated
## 203 0 0 1002 1|12 low Small-Large isolated
## 204 0 0 1002 1|12 low Small-Large isolated
## 205 0 0 1002 1|12 low Small-Large isolated
## 206 0 0 1002 1|12 low Small-Large isolated
## 207 0 0 1002 1|12 low Small-Large isolated
## 208 0 0 1002 1|12 low Small-Large isolated
## 209 0 0 1002 1|12 low Small-Large isolated
## 210 0 0 1002 1|12 low Small-Large isolated
## 211 0 0 1002 1|12 low Small-Large isolated
## 212 0 0 1002 1|12 low Small-Large isolated
## 213 0 0 1002 1|12 low Small-Large isolated
## 214 0 0 1002 1|12 low Small-Large isolated
## 215 0 0 1002 1|12 low Small-Large isolated
## 216 0 0 1002 1|12 low Small-Large isolated
## 217 1 4 1002 1|12 low Small-Large isolated
## 218 1 4 1002 1|12 low Small-Large isolated
## 219 1 4 1002 1|12 low Small-Large isolated
## 220 1 4 1002 1|12 low Small-Large isolated
## 221 1 4 1002 1|12 low Small-Large isolated
## 222 1 4 1002 1|12 low Small-Large isolated
## 223 1 4 1002 1|12 low Small-Large isolated
## 224 1 4 1002 1|12 low Small-Large isolated
## 225 1 4 1002 1|12 low Small-Large isolated
## 226 1 4 1002 1|12 low Small-Large isolated
## 227 1 4 1002 1|12 low Small-Large isolated
## 228 1 4 1002 1|12 low Small-Large isolated
## 229 1 4 1002 1|12 low Small-Large isolated
## 230 1 4 1002 1|12 low Small-Large isolated
## 231 1 4 1002 1|12 low Small-Large isolated
## 232 1 4 1002 1|12 low Small-Large isolated
## 233 1 4 1002 1|12 low Small-Large isolated
## 234 1 4 1002 1|12 low Small-Large isolated
## 235 1 4 1002 1|12 low Small-Large isolated
## 236 1 4 1002 1|12 low Small-Large isolated
## 237 1 4 1002 1|12 low Small-Large isolated
## 238 1 4 1002 1|12 low Small-Large isolated
## 239 1 4 1002 1|12 low Small-Large isolated
## 240 1 4 1002 1|12 low Small-Large isolated
## 241 2 8 1002 1|12 low Small-Large isolated
## 242 2 8 1002 1|12 low Small-Large isolated
## 243 2 8 1002 1|12 low Small-Large isolated
## 244 2 8 1002 1|12 low Small-Large isolated
## 245 2 8 1002 1|12 low Small-Large isolated
## 246 2 8 1002 1|12 low Small-Large isolated
## 247 2 8 1002 1|12 low Small-Large isolated
## 248 2 8 1002 1|12 low Small-Large isolated
## 249 2 8 1002 1|12 low Small-Large isolated
## 250 2 8 1002 1|12 low Small-Large isolated
## 251 2 8 1002 1|12 low Small-Large isolated
## 252 2 8 1002 1|12 low Small-Large isolated
## 253 2 8 1002 1|12 low Small-Large isolated
## 254 2 8 1002 1|12 low Small-Large isolated
## 255 2 8 1002 1|12 low Small-Large isolated
## 256 2 8 1002 1|12 low Small-Large isolated
## 257 2 8 1002 1|12 low Small-Large isolated
## 258 2 8 1002 1|12 low Small-Large isolated
## 259 2 8 1002 1|12 low Small-Large isolated
## 260 2 8 1002 1|12 low Small-Large isolated
## 261 2 8 1002 1|12 low Small-Large isolated
## 262 2 8 1002 1|12 low Small-Large isolated
## 263 2 8 1002 1|12 low Small-Large isolated
## 264 2 8 1002 1|12 low Small-Large isolated
## 265 3 12 1002 1|12 low Small-Large isolated
## 266 3 12 1002 1|12 low Small-Large isolated
## 267 3 12 1002 1|12 low Small-Large isolated
## 268 3 12 1002 1|12 low Small-Large isolated
## 269 3 12 1002 1|12 low Small-Large isolated
## 270 3 12 1002 1|12 low Small-Large isolated
## 271 3 12 1002 1|12 low Small-Large isolated
## 272 3 12 1002 1|12 low Small-Large isolated
## 273 3 12 1002 1|12 low Small-Large isolated
## 274 3 12 1002 1|12 low Small-Large isolated
## 275 3 12 1002 1|12 low Small-Large isolated
## 276 3 12 1002 1|12 low Small-Large isolated
## 277 3 12 1002 1|12 low Small-Large isolated
## 278 3 12 1002 1|12 low Small-Large isolated
## 279 3 12 1002 1|12 low Small-Large isolated
## 280 3 12 1002 1|12 low Small-Large isolated
## 281 3 12 1002 1|12 low Small-Large isolated
## 282 3 12 1002 1|12 low Small-Large isolated
## 283 3 12 1002 1|12 low Small-Large isolated
## 284 3 12 1002 1|12 low Small-Large isolated
## 285 3 12 1002 1|12 low Small-Large isolated
## 286 3 12 1002 1|12 low Small-Large isolated
## 287 3 12 1002 1|12 low Small-Large isolated
## 288 3 12 1002 1|12 low Small-Large isolated
## 289 4 16 1002 1|12 low Small-Large isolated
## 290 4 16 1002 1|12 low Small-Large isolated
## 291 4 16 1002 1|12 low Small-Large isolated
## 292 4 16 1002 1|12 low Small-Large isolated
## 293 4 16 1002 1|12 low Small-Large isolated
## 294 4 16 1002 1|12 low Small-Large isolated
## 295 4 16 1002 1|12 low Small-Large isolated
## 296 4 16 1002 1|12 low Small-Large isolated
## 297 4 16 1002 1|12 low Small-Large isolated
## 298 4 16 1002 1|12 low Small-Large isolated
## 299 4 16 1002 1|12 low Small-Large isolated
## 300 4 16 1002 1|12 low Small-Large isolated
## 301 4 16 1002 1|12 low Small-Large isolated
## 302 4 16 1002 1|12 low Small-Large isolated
## 303 4 16 1002 1|12 low Small-Large isolated
## 304 4 16 1002 1|12 low Small-Large isolated
## 305 4 16 1002 1|12 low Small-Large isolated
## 306 4 16 1002 1|12 low Small-Large isolated
## 307 4 16 1002 1|12 low Small-Large isolated
## 308 4 16 1002 1|12 low Small-Large isolated
## 309 4 16 1002 1|12 low Small-Large isolated
## 310 4 16 1002 1|12 low Small-Large isolated
## 311 4 16 1002 1|12 low Small-Large isolated
## 312 4 16 1002 1|12 low Small-Large isolated
## 313 5 20 1002 1|12 low Small-Large isolated
## 314 5 20 1002 1|12 low Small-Large isolated
## 315 5 20 1002 1|12 low Small-Large isolated
## 316 5 20 1002 1|12 low Small-Large isolated
## 317 5 20 1002 1|12 low Small-Large isolated
## 318 5 20 1002 1|12 low Small-Large isolated
## 319 5 20 1002 1|12 low Small-Large isolated
## 320 5 20 1002 1|12 low Small-Large isolated
## 321 5 20 1002 1|12 low Small-Large isolated
## 322 5 20 1002 1|12 low Small-Large isolated
## 323 5 20 1002 1|12 low Small-Large isolated
## 324 5 20 1002 1|12 low Small-Large isolated
## 325 5 20 1002 1|12 low Small-Large isolated
## 326 5 20 1002 1|12 low Small-Large isolated
## 327 5 20 1002 1|12 low Small-Large isolated
## 328 5 20 1002 1|12 low Small-Large isolated
## 329 5 20 1002 1|12 low Small-Large isolated
## 330 5 20 1002 1|12 low Small-Large isolated
## 331 5 20 1002 1|12 low Small-Large isolated
## 332 5 20 1002 1|12 low Small-Large isolated
## 333 5 20 1002 1|12 low Small-Large isolated
## 334 5 20 1002 1|12 low Small-Large isolated
## 335 5 20 1002 1|12 low Small-Large isolated
## 336 5 20 1002 1|12 low Small-Large isolated
## 337 6 24 1002 1|12 low Small-Large isolated
## 338 6 24 1002 1|12 low Small-Large isolated
## 339 6 24 1002 1|12 low Small-Large isolated
## 340 6 24 1002 1|12 low Small-Large isolated
## 341 6 24 1002 1|12 low Small-Large isolated
## 342 6 24 1002 1|12 low Small-Large isolated
## 343 6 24 1002 1|12 low Small-Large isolated
## 344 6 24 1002 1|12 low Small-Large isolated
## 345 6 24 1002 1|12 low Small-Large isolated
## 346 6 24 1002 1|12 low Small-Large isolated
## 347 6 24 1002 1|12 low Small-Large isolated
## 348 6 24 1002 1|12 low Small-Large isolated
## 349 6 24 1002 1|12 low Small-Large isolated
## 350 6 24 1002 1|12 low Small-Large isolated
## 351 6 24 1002 1|12 low Small-Large isolated
## 352 6 24 1002 1|12 low Small-Large isolated
## 353 6 24 1002 1|12 low Small-Large isolated
## 354 6 24 1002 1|12 low Small-Large isolated
## 355 6 24 1002 1|12 low Small-Large isolated
## 356 6 24 1002 1|12 low Small-Large isolated
## 357 6 24 1002 1|12 low Small-Large isolated
## 358 6 24 1002 1|12 low Small-Large isolated
## 359 6 24 1002 1|12 low Small-Large isolated
## 360 6 24 1002 1|12 low Small-Large isolated
## 361 7 28 1002 1|12 low Small-Large isolated
## 362 7 28 1002 1|12 low Small-Large isolated
## 363 7 28 1002 1|12 low Small-Large isolated
## 364 7 28 1002 1|12 low Small-Large isolated
## 365 7 28 1002 1|12 low Small-Large isolated
## 366 7 28 1002 1|12 low Small-Large isolated
## 367 7 28 1002 1|12 low Small-Large isolated
## 368 7 28 1002 1|12 low Small-Large isolated
## 369 7 28 1002 1|12 low Small-Large isolated
## 370 7 28 1002 1|12 low Small-Large isolated
## 371 7 28 1002 1|12 low Small-Large isolated
## 372 7 28 1002 1|12 low Small-Large isolated
## 373 7 28 1002 1|12 low Small-Large isolated
## 374 7 28 1002 1|12 low Small-Large isolated
## 375 7 28 1002 1|12 low Small-Large isolated
## 376 7 28 1002 1|12 low Small-Large isolated
## 377 7 28 1002 1|12 low Small-Large isolated
## 378 7 28 1002 1|12 low Small-Large isolated
## 379 7 28 1002 1|12 low Small-Large isolated
## 380 7 28 1002 1|12 low Small-Large isolated
## 381 7 28 1002 1|12 low Small-Large isolated
## 382 7 28 1002 1|12 low Small-Large isolated
## 383 7 28 1002 1|12 low Small-Large isolated
## 384 7 28 1002 1|12 low Small-Large isolated
## 385 0 0 1003 1|13 low Small-Large isolated
## 386 0 0 1003 1|13 low Small-Large isolated
## 387 0 0 1003 1|13 low Small-Large isolated
## 388 0 0 1003 1|13 low Small-Large isolated
## 389 0 0 1003 1|13 low Small-Large isolated
## 390 0 0 1003 1|13 low Small-Large isolated
## 391 0 0 1003 1|13 low Small-Large isolated
## 392 0 0 1003 1|13 low Small-Large isolated
## 393 0 0 1003 1|13 low Small-Large isolated
## 394 0 0 1003 1|13 low Small-Large isolated
## 395 0 0 1003 1|13 low Small-Large isolated
## 396 0 0 1003 1|13 low Small-Large isolated
## 397 0 0 1003 1|13 low Small-Large isolated
## 398 0 0 1003 1|13 low Small-Large isolated
## 399 0 0 1003 1|13 low Small-Large isolated
## 400 0 0 1003 1|13 low Small-Large isolated
## 401 0 0 1003 1|13 low Small-Large isolated
## 402 0 0 1003 1|13 low Small-Large isolated
## 403 0 0 1003 1|13 low Small-Large isolated
## 404 0 0 1003 1|13 low Small-Large isolated
## 405 0 0 1003 1|13 low Small-Large isolated
## 406 0 0 1003 1|13 low Small-Large isolated
## 407 0 0 1003 1|13 low Small-Large isolated
## 408 0 0 1003 1|13 low Small-Large isolated
## 409 1 4 1003 1|13 low Small-Large isolated
## 410 1 4 1003 1|13 low Small-Large isolated
## 411 1 4 1003 1|13 low Small-Large isolated
## 412 1 4 1003 1|13 low Small-Large isolated
## 413 1 4 1003 1|13 low Small-Large isolated
## 414 1 4 1003 1|13 low Small-Large isolated
## 415 1 4 1003 1|13 low Small-Large isolated
## 416 1 4 1003 1|13 low Small-Large isolated
## 417 1 4 1003 1|13 low Small-Large isolated
## 418 1 4 1003 1|13 low Small-Large isolated
## 419 1 4 1003 1|13 low Small-Large isolated
## 420 1 4 1003 1|13 low Small-Large isolated
## 421 1 4 1003 1|13 low Small-Large isolated
## 422 1 4 1003 1|13 low Small-Large isolated
## 423 1 4 1003 1|13 low Small-Large isolated
## 424 1 4 1003 1|13 low Small-Large isolated
## 425 1 4 1003 1|13 low Small-Large isolated
## 426 1 4 1003 1|13 low Small-Large isolated
## 427 1 4 1003 1|13 low Small-Large isolated
## 428 1 4 1003 1|13 low Small-Large isolated
## 429 1 4 1003 1|13 low Small-Large isolated
## 430 1 4 1003 1|13 low Small-Large isolated
## 431 1 4 1003 1|13 low Small-Large isolated
## 432 1 4 1003 1|13 low Small-Large isolated
## 433 2 8 1003 1|13 low Small-Large isolated
## 434 2 8 1003 1|13 low Small-Large isolated
## 435 2 8 1003 1|13 low Small-Large isolated
## 436 2 8 1003 1|13 low Small-Large isolated
## 437 2 8 1003 1|13 low Small-Large isolated
## 438 2 8 1003 1|13 low Small-Large isolated
## 439 2 8 1003 1|13 low Small-Large isolated
## 440 2 8 1003 1|13 low Small-Large isolated
## 441 2 8 1003 1|13 low Small-Large isolated
## 442 2 8 1003 1|13 low Small-Large isolated
## 443 2 8 1003 1|13 low Small-Large isolated
## 444 2 8 1003 1|13 low Small-Large isolated
## 445 2 8 1003 1|13 low Small-Large isolated
## 446 2 8 1003 1|13 low Small-Large isolated
## 447 2 8 1003 1|13 low Small-Large isolated
## 448 2 8 1003 1|13 low Small-Large isolated
## 449 2 8 1003 1|13 low Small-Large isolated
## 450 2 8 1003 1|13 low Small-Large isolated
## 451 2 8 1003 1|13 low Small-Large isolated
## 452 2 8 1003 1|13 low Small-Large isolated
## 453 2 8 1003 1|13 low Small-Large isolated
## 454 2 8 1003 1|13 low Small-Large isolated
## 455 2 8 1003 1|13 low Small-Large isolated
## 456 2 8 1003 1|13 low Small-Large isolated
## 457 3 12 1003 1|13 low Small-Large isolated
## 458 3 12 1003 1|13 low Small-Large isolated
## 459 3 12 1003 1|13 low Small-Large isolated
## 460 3 12 1003 1|13 low Small-Large isolated
## 461 3 12 1003 1|13 low Small-Large isolated
## 462 3 12 1003 1|13 low Small-Large isolated
## 463 3 12 1003 1|13 low Small-Large isolated
## 464 3 12 1003 1|13 low Small-Large isolated
## 465 3 12 1003 1|13 low Small-Large isolated
## 466 3 12 1003 1|13 low Small-Large isolated
## 467 3 12 1003 1|13 low Small-Large isolated
## 468 3 12 1003 1|13 low Small-Large isolated
## 469 3 12 1003 1|13 low Small-Large isolated
## 470 3 12 1003 1|13 low Small-Large isolated
## 471 3 12 1003 1|13 low Small-Large isolated
## 472 3 12 1003 1|13 low Small-Large isolated
## 473 3 12 1003 1|13 low Small-Large isolated
## 474 3 12 1003 1|13 low Small-Large isolated
## 475 3 12 1003 1|13 low Small-Large isolated
## 476 3 12 1003 1|13 low Small-Large isolated
## 477 3 12 1003 1|13 low Small-Large isolated
## 478 3 12 1003 1|13 low Small-Large isolated
## 479 3 12 1003 1|13 low Small-Large isolated
## 480 3 12 1003 1|13 low Small-Large isolated
## 481 4 16 1003 1|13 low Small-Large isolated
## 482 4 16 1003 1|13 low Small-Large isolated
## 483 4 16 1003 1|13 low Small-Large isolated
## 484 4 16 1003 1|13 low Small-Large isolated
## 485 4 16 1003 1|13 low Small-Large isolated
## 486 4 16 1003 1|13 low Small-Large isolated
## 487 4 16 1003 1|13 low Small-Large isolated
## 488 4 16 1003 1|13 low Small-Large isolated
## 489 4 16 1003 1|13 low Small-Large isolated
## 490 4 16 1003 1|13 low Small-Large isolated
## 491 4 16 1003 1|13 low Small-Large isolated
## 492 4 16 1003 1|13 low Small-Large isolated
## 493 4 16 1003 1|13 low Small-Large isolated
## 494 4 16 1003 1|13 low Small-Large isolated
## 495 4 16 1003 1|13 low Small-Large isolated
## 496 4 16 1003 1|13 low Small-Large isolated
## 497 4 16 1003 1|13 low Small-Large isolated
## 498 4 16 1003 1|13 low Small-Large isolated
## 499 4 16 1003 1|13 low Small-Large isolated
## 500 4 16 1003 1|13 low Small-Large isolated
## 501 4 16 1003 1|13 low Small-Large isolated
## 502 4 16 1003 1|13 low Small-Large isolated
## 503 4 16 1003 1|13 low Small-Large isolated
## 504 4 16 1003 1|13 low Small-Large isolated
## 505 5 20 1003 1|13 low Small-Large isolated
## 506 5 20 1003 1|13 low Small-Large isolated
## 507 5 20 1003 1|13 low Small-Large isolated
## 508 5 20 1003 1|13 low Small-Large isolated
## 509 5 20 1003 1|13 low Small-Large isolated
## 510 5 20 1003 1|13 low Small-Large isolated
## 511 5 20 1003 1|13 low Small-Large isolated
## 512 5 20 1003 1|13 low Small-Large isolated
## 513 5 20 1003 1|13 low Small-Large isolated
## 514 5 20 1003 1|13 low Small-Large isolated
## 515 5 20 1003 1|13 low Small-Large isolated
## 516 5 20 1003 1|13 low Small-Large isolated
## 517 5 20 1003 1|13 low Small-Large isolated
## 518 5 20 1003 1|13 low Small-Large isolated
## 519 5 20 1003 1|13 low Small-Large isolated
## 520 5 20 1003 1|13 low Small-Large isolated
## 521 5 20 1003 1|13 low Small-Large isolated
## 522 5 20 1003 1|13 low Small-Large isolated
## 523 5 20 1003 1|13 low Small-Large isolated
## 524 5 20 1003 1|13 low Small-Large isolated
## 525 5 20 1003 1|13 low Small-Large isolated
## 526 5 20 1003 1|13 low Small-Large isolated
## 527 5 20 1003 1|13 low Small-Large isolated
## 528 5 20 1003 1|13 low Small-Large isolated
## 529 6 24 1003 1|13 low Small-Large isolated
## 530 6 24 1003 1|13 low Small-Large isolated
## 531 6 24 1003 1|13 low Small-Large isolated
## 532 6 24 1003 1|13 low Small-Large isolated
## 533 6 24 1003 1|13 low Small-Large isolated
## 534 6 24 1003 1|13 low Small-Large isolated
## 535 6 24 1003 1|13 low Small-Large isolated
## 536 6 24 1003 1|13 low Small-Large isolated
## 537 6 24 1003 1|13 low Small-Large isolated
## 538 6 24 1003 1|13 low Small-Large isolated
## 539 6 24 1003 1|13 low Small-Large isolated
## 540 6 24 1003 1|13 low Small-Large isolated
## 541 6 24 1003 1|13 low Small-Large isolated
## 542 6 24 1003 1|13 low Small-Large isolated
## 543 6 24 1003 1|13 low Small-Large isolated
## 544 6 24 1003 1|13 low Small-Large isolated
## 545 6 24 1003 1|13 low Small-Large isolated
## 546 6 24 1003 1|13 low Small-Large isolated
## 547 6 24 1003 1|13 low Small-Large isolated
## 548 6 24 1003 1|13 low Small-Large isolated
## 549 6 24 1003 1|13 low Small-Large isolated
## 550 6 24 1003 1|13 low Small-Large isolated
## 551 6 24 1003 1|13 low Small-Large isolated
## 552 6 24 1003 1|13 low Small-Large isolated
## 553 7 28 1003 1|13 low Small-Large isolated
## 554 7 28 1003 1|13 low Small-Large isolated
## 555 7 28 1003 1|13 low Small-Large isolated
## 556 7 28 1003 1|13 low Small-Large isolated
## 557 7 28 1003 1|13 low Small-Large isolated
## 558 7 28 1003 1|13 low Small-Large isolated
## 559 7 28 1003 1|13 low Small-Large isolated
## 560 7 28 1003 1|13 low Small-Large isolated
## 561 7 28 1003 1|13 low Small-Large isolated
## 562 7 28 1003 1|13 low Small-Large isolated
## 563 7 28 1003 1|13 low Small-Large isolated
## 564 7 28 1003 1|13 low Small-Large isolated
## 565 7 28 1003 1|13 low Small-Large isolated
## 566 7 28 1003 1|13 low Small-Large isolated
## 567 7 28 1003 1|13 low Small-Large isolated
## 568 7 28 1003 1|13 low Small-Large isolated
## 569 7 28 1003 1|13 low Small-Large isolated
## 570 7 28 1003 1|13 low Small-Large isolated
## 571 7 28 1003 1|13 low Small-Large isolated
## 572 7 28 1003 1|13 low Small-Large isolated
## 573 7 28 1003 1|13 low Small-Large isolated
## 574 7 28 1003 1|13 low Small-Large isolated
## 575 7 28 1003 1|13 low Small-Large isolated
## 576 7 28 1003 1|13 low Small-Large isolated
## 577 0 0 1004 1|14 low Small-Large isolated
## 578 0 0 1004 1|14 low Small-Large isolated
## 579 0 0 1004 1|14 low Small-Large isolated
## 580 0 0 1004 1|14 low Small-Large isolated
## 581 0 0 1004 1|14 low Small-Large isolated
## 582 0 0 1004 1|14 low Small-Large isolated
## 583 0 0 1004 1|14 low Small-Large isolated
## 584 0 0 1004 1|14 low Small-Large isolated
## 585 0 0 1004 1|14 low Small-Large isolated
## 586 0 0 1004 1|14 low Small-Large isolated
## 587 0 0 1004 1|14 low Small-Large isolated
## 588 0 0 1004 1|14 low Small-Large isolated
## 589 0 0 1004 1|14 low Small-Large isolated
## 590 0 0 1004 1|14 low Small-Large isolated
## 591 0 0 1004 1|14 low Small-Large isolated
## 592 0 0 1004 1|14 low Small-Large isolated
## 593 0 0 1004 1|14 low Small-Large isolated
## 594 0 0 1004 1|14 low Small-Large isolated
## 595 0 0 1004 1|14 low Small-Large isolated
## 596 0 0 1004 1|14 low Small-Large isolated
## 597 0 0 1004 1|14 low Small-Large isolated
## 598 0 0 1004 1|14 low Small-Large isolated
## 599 0 0 1004 1|14 low Small-Large isolated
## 600 0 0 1004 1|14 low Small-Large isolated
## 601 1 4 1004 1|14 low Small-Large isolated
## 602 1 4 1004 1|14 low Small-Large isolated
## 603 1 4 1004 1|14 low Small-Large isolated
## 604 1 4 1004 1|14 low Small-Large isolated
## 605 1 4 1004 1|14 low Small-Large isolated
## 606 1 4 1004 1|14 low Small-Large isolated
## 607 1 4 1004 1|14 low Small-Large isolated
## 608 1 4 1004 1|14 low Small-Large isolated
## 609 1 4 1004 1|14 low Small-Large isolated
## 610 1 4 1004 1|14 low Small-Large isolated
## 611 1 4 1004 1|14 low Small-Large isolated
## 612 1 4 1004 1|14 low Small-Large isolated
## 613 1 4 1004 1|14 low Small-Large isolated
## 614 1 4 1004 1|14 low Small-Large isolated
## 615 1 4 1004 1|14 low Small-Large isolated
## 616 1 4 1004 1|14 low Small-Large isolated
## 617 1 4 1004 1|14 low Small-Large isolated
## 618 1 4 1004 1|14 low Small-Large isolated
## 619 1 4 1004 1|14 low Small-Large isolated
## 620 1 4 1004 1|14 low Small-Large isolated
## 621 1 4 1004 1|14 low Small-Large isolated
## 622 1 4 1004 1|14 low Small-Large isolated
## 623 1 4 1004 1|14 low Small-Large isolated
## 624 1 4 1004 1|14 low Small-Large isolated
## 625 2 8 1004 1|14 low Small-Large isolated
## 626 2 8 1004 1|14 low Small-Large isolated
## 627 2 8 1004 1|14 low Small-Large isolated
## 628 2 8 1004 1|14 low Small-Large isolated
## 629 2 8 1004 1|14 low Small-Large isolated
## 630 2 8 1004 1|14 low Small-Large isolated
## 631 2 8 1004 1|14 low Small-Large isolated
## 632 2 8 1004 1|14 low Small-Large isolated
## 633 2 8 1004 1|14 low Small-Large isolated
## 634 2 8 1004 1|14 low Small-Large isolated
## 635 2 8 1004 1|14 low Small-Large isolated
## 636 2 8 1004 1|14 low Small-Large isolated
## 637 2 8 1004 1|14 low Small-Large isolated
## 638 2 8 1004 1|14 low Small-Large isolated
## 639 2 8 1004 1|14 low Small-Large isolated
## 640 2 8 1004 1|14 low Small-Large isolated
## 641 2 8 1004 1|14 low Small-Large isolated
## 642 2 8 1004 1|14 low Small-Large isolated
## 643 2 8 1004 1|14 low Small-Large isolated
## 644 2 8 1004 1|14 low Small-Large isolated
## 645 2 8 1004 1|14 low Small-Large isolated
## 646 2 8 1004 1|14 low Small-Large isolated
## 647 2 8 1004 1|14 low Small-Large isolated
## 648 2 8 1004 1|14 low Small-Large isolated
## 649 3 12 1004 1|14 low Small-Large isolated
## 650 3 12 1004 1|14 low Small-Large isolated
## 651 3 12 1004 1|14 low Small-Large isolated
## 652 3 12 1004 1|14 low Small-Large isolated
## 653 3 12 1004 1|14 low Small-Large isolated
## 654 3 12 1004 1|14 low Small-Large isolated
## 655 3 12 1004 1|14 low Small-Large isolated
## 656 3 12 1004 1|14 low Small-Large isolated
## 657 3 12 1004 1|14 low Small-Large isolated
## 658 3 12 1004 1|14 low Small-Large isolated
## 659 3 12 1004 1|14 low Small-Large isolated
## 660 3 12 1004 1|14 low Small-Large isolated
## 661 3 12 1004 1|14 low Small-Large isolated
## 662 3 12 1004 1|14 low Small-Large isolated
## 663 3 12 1004 1|14 low Small-Large isolated
## 664 3 12 1004 1|14 low Small-Large isolated
## 665 3 12 1004 1|14 low Small-Large isolated
## 666 3 12 1004 1|14 low Small-Large isolated
## 667 3 12 1004 1|14 low Small-Large isolated
## 668 3 12 1004 1|14 low Small-Large isolated
## 669 3 12 1004 1|14 low Small-Large isolated
## 670 3 12 1004 1|14 low Small-Large isolated
## 671 3 12 1004 1|14 low Small-Large isolated
## 672 3 12 1004 1|14 low Small-Large isolated
## 673 4 16 1004 1|14 low Small-Large isolated
## 674 4 16 1004 1|14 low Small-Large isolated
## 675 4 16 1004 1|14 low Small-Large isolated
## 676 4 16 1004 1|14 low Small-Large isolated
## 677 4 16 1004 1|14 low Small-Large isolated
## 678 4 16 1004 1|14 low Small-Large isolated
## 679 4 16 1004 1|14 low Small-Large isolated
## 680 4 16 1004 1|14 low Small-Large isolated
## 681 4 16 1004 1|14 low Small-Large isolated
## 682 4 16 1004 1|14 low Small-Large isolated
## 683 4 16 1004 1|14 low Small-Large isolated
## 684 4 16 1004 1|14 low Small-Large isolated
## 685 4 16 1004 1|14 low Small-Large isolated
## 686 4 16 1004 1|14 low Small-Large isolated
## 687 4 16 1004 1|14 low Small-Large isolated
## 688 4 16 1004 1|14 low Small-Large isolated
## 689 4 16 1004 1|14 low Small-Large isolated
## 690 4 16 1004 1|14 low Small-Large isolated
## 691 4 16 1004 1|14 low Small-Large isolated
## 692 4 16 1004 1|14 low Small-Large isolated
## 693 4 16 1004 1|14 low Small-Large isolated
## 694 4 16 1004 1|14 low Small-Large isolated
## 695 4 16 1004 1|14 low Small-Large isolated
## 696 4 16 1004 1|14 low Small-Large isolated
## 697 5 20 1004 1|14 low Small-Large isolated
## 698 5 20 1004 1|14 low Small-Large isolated
## 699 5 20 1004 1|14 low Small-Large isolated
## 700 5 20 1004 1|14 low Small-Large isolated
## 701 5 20 1004 1|14 low Small-Large isolated
## 702 5 20 1004 1|14 low Small-Large isolated
## 703 5 20 1004 1|14 low Small-Large isolated
## 704 5 20 1004 1|14 low Small-Large isolated
## 705 5 20 1004 1|14 low Small-Large isolated
## 706 5 20 1004 1|14 low Small-Large isolated
## 707 5 20 1004 1|14 low Small-Large isolated
## 708 5 20 1004 1|14 low Small-Large isolated
## 709 5 20 1004 1|14 low Small-Large isolated
## 710 5 20 1004 1|14 low Small-Large isolated
## 711 5 20 1004 1|14 low Small-Large isolated
## 712 5 20 1004 1|14 low Small-Large isolated
## 713 5 20 1004 1|14 low Small-Large isolated
## 714 5 20 1004 1|14 low Small-Large isolated
## 715 5 20 1004 1|14 low Small-Large isolated
## 716 5 20 1004 1|14 low Small-Large isolated
## 717 5 20 1004 1|14 low Small-Large isolated
## 718 5 20 1004 1|14 low Small-Large isolated
## 719 5 20 1004 1|14 low Small-Large isolated
## 720 5 20 1004 1|14 low Small-Large isolated
## 721 6 24 1004 1|14 low Small-Large isolated
## 722 6 24 1004 1|14 low Small-Large isolated
## 723 6 24 1004 1|14 low Small-Large isolated
## 724 6 24 1004 1|14 low Small-Large isolated
## 725 6 24 1004 1|14 low Small-Large isolated
## 726 6 24 1004 1|14 low Small-Large isolated
## 727 6 24 1004 1|14 low Small-Large isolated
## 728 6 24 1004 1|14 low Small-Large isolated
## 729 6 24 1004 1|14 low Small-Large isolated
## 730 6 24 1004 1|14 low Small-Large isolated
## 731 6 24 1004 1|14 low Small-Large isolated
## 732 6 24 1004 1|14 low Small-Large isolated
## 733 6 24 1004 1|14 low Small-Large isolated
## 734 6 24 1004 1|14 low Small-Large isolated
## 735 6 24 1004 1|14 low Small-Large isolated
## 736 6 24 1004 1|14 low Small-Large isolated
## 737 6 24 1004 1|14 low Small-Large isolated
## 738 6 24 1004 1|14 low Small-Large isolated
## 739 6 24 1004 1|14 low Small-Large isolated
## 740 6 24 1004 1|14 low Small-Large isolated
## 741 6 24 1004 1|14 low Small-Large isolated
## 742 6 24 1004 1|14 low Small-Large isolated
## 743 6 24 1004 1|14 low Small-Large isolated
## 744 6 24 1004 1|14 low Small-Large isolated
## 745 7 28 1004 1|14 low Small-Large isolated
## 746 7 28 1004 1|14 low Small-Large isolated
## 747 7 28 1004 1|14 low Small-Large isolated
## 748 7 28 1004 1|14 low Small-Large isolated
## 749 7 28 1004 1|14 low Small-Large isolated
## 750 7 28 1004 1|14 low Small-Large isolated
## 751 7 28 1004 1|14 low Small-Large isolated
## 752 7 28 1004 1|14 low Small-Large isolated
## 753 7 28 1004 1|14 low Small-Large isolated
## 754 7 28 1004 1|14 low Small-Large isolated
## 755 7 28 1004 1|14 low Small-Large isolated
## 756 7 28 1004 1|14 low Small-Large isolated
## 757 7 28 1004 1|14 low Small-Large isolated
## 758 7 28 1004 1|14 low Small-Large isolated
## 759 7 28 1004 1|14 low Small-Large isolated
## 760 7 28 1004 1|14 low Small-Large isolated
## 761 7 28 1004 1|14 low Small-Large isolated
## 762 7 28 1004 1|14 low Small-Large isolated
## 763 7 28 1004 1|14 low Small-Large isolated
## 764 7 28 1004 1|14 low Small-Large isolated
## 765 7 28 1004 1|14 low Small-Large isolated
## 766 7 28 1004 1|14 low Small-Large isolated
## 767 7 28 1004 1|14 low Small-Large isolated
## 768 7 28 1004 1|14 low Small-Large isolated
## 769 0 0 1005 1|15 low Small-Large isolated
## 770 0 0 1005 1|15 low Small-Large isolated
## 771 0 0 1005 1|15 low Small-Large isolated
## 772 0 0 1005 1|15 low Small-Large isolated
## 773 0 0 1005 1|15 low Small-Large isolated
## 774 0 0 1005 1|15 low Small-Large isolated
## 775 0 0 1005 1|15 low Small-Large isolated
## 776 0 0 1005 1|15 low Small-Large isolated
## 777 0 0 1005 1|15 low Small-Large isolated
## 778 0 0 1005 1|15 low Small-Large isolated
## 779 0 0 1005 1|15 low Small-Large isolated
## 780 0 0 1005 1|15 low Small-Large isolated
## 781 0 0 1005 1|15 low Small-Large isolated
## 782 0 0 1005 1|15 low Small-Large isolated
## 783 0 0 1005 1|15 low Small-Large isolated
## 784 0 0 1005 1|15 low Small-Large isolated
## 785 0 0 1005 1|15 low Small-Large isolated
## 786 0 0 1005 1|15 low Small-Large isolated
## 787 0 0 1005 1|15 low Small-Large isolated
## 788 0 0 1005 1|15 low Small-Large isolated
## 789 0 0 1005 1|15 low Small-Large isolated
## 790 0 0 1005 1|15 low Small-Large isolated
## 791 0 0 1005 1|15 low Small-Large isolated
## 792 0 0 1005 1|15 low Small-Large isolated
## 793 1 4 1005 1|15 low Small-Large isolated
## 794 1 4 1005 1|15 low Small-Large isolated
## 795 1 4 1005 1|15 low Small-Large isolated
## 796 1 4 1005 1|15 low Small-Large isolated
## 797 1 4 1005 1|15 low Small-Large isolated
## 798 1 4 1005 1|15 low Small-Large isolated
## 799 1 4 1005 1|15 low Small-Large isolated
## 800 1 4 1005 1|15 low Small-Large isolated
## 801 1 4 1005 1|15 low Small-Large isolated
## 802 1 4 1005 1|15 low Small-Large isolated
## 803 1 4 1005 1|15 low Small-Large isolated
## 804 1 4 1005 1|15 low Small-Large isolated
## 805 1 4 1005 1|15 low Small-Large isolated
## 806 1 4 1005 1|15 low Small-Large isolated
## 807 1 4 1005 1|15 low Small-Large isolated
## 808 1 4 1005 1|15 low Small-Large isolated
## 809 1 4 1005 1|15 low Small-Large isolated
## 810 1 4 1005 1|15 low Small-Large isolated
## 811 1 4 1005 1|15 low Small-Large isolated
## 812 1 4 1005 1|15 low Small-Large isolated
## 813 1 4 1005 1|15 low Small-Large isolated
## 814 1 4 1005 1|15 low Small-Large isolated
## 815 1 4 1005 1|15 low Small-Large isolated
## 816 1 4 1005 1|15 low Small-Large isolated
## 817 2 8 1005 1|15 low Small-Large isolated
## 818 2 8 1005 1|15 low Small-Large isolated
## 819 2 8 1005 1|15 low Small-Large isolated
## 820 2 8 1005 1|15 low Small-Large isolated
## 821 2 8 1005 1|15 low Small-Large isolated
## 822 2 8 1005 1|15 low Small-Large isolated
## 823 2 8 1005 1|15 low Small-Large isolated
## 824 2 8 1005 1|15 low Small-Large isolated
## 825 2 8 1005 1|15 low Small-Large isolated
## 826 2 8 1005 1|15 low Small-Large isolated
## 827 2 8 1005 1|15 low Small-Large isolated
## 828 2 8 1005 1|15 low Small-Large isolated
## 829 2 8 1005 1|15 low Small-Large isolated
## 830 2 8 1005 1|15 low Small-Large isolated
## 831 2 8 1005 1|15 low Small-Large isolated
## 832 2 8 1005 1|15 low Small-Large isolated
## 833 2 8 1005 1|15 low Small-Large isolated
## 834 2 8 1005 1|15 low Small-Large isolated
## 835 2 8 1005 1|15 low Small-Large isolated
## 836 2 8 1005 1|15 low Small-Large isolated
## 837 2 8 1005 1|15 low Small-Large isolated
## 838 2 8 1005 1|15 low Small-Large isolated
## 839 2 8 1005 1|15 low Small-Large isolated
## 840 2 8 1005 1|15 low Small-Large isolated
## 841 3 12 1005 1|15 low Small-Large isolated
## 842 3 12 1005 1|15 low Small-Large isolated
## 843 3 12 1005 1|15 low Small-Large isolated
## 844 3 12 1005 1|15 low Small-Large isolated
## 845 3 12 1005 1|15 low Small-Large isolated
## 846 3 12 1005 1|15 low Small-Large isolated
## 847 3 12 1005 1|15 low Small-Large isolated
## 848 3 12 1005 1|15 low Small-Large isolated
## 849 3 12 1005 1|15 low Small-Large isolated
## 850 3 12 1005 1|15 low Small-Large isolated
## 851 3 12 1005 1|15 low Small-Large isolated
## 852 3 12 1005 1|15 low Small-Large isolated
## 853 3 12 1005 1|15 low Small-Large isolated
## 854 3 12 1005 1|15 low Small-Large isolated
## 855 3 12 1005 1|15 low Small-Large isolated
## 856 3 12 1005 1|15 low Small-Large isolated
## 857 3 12 1005 1|15 low Small-Large isolated
## 858 3 12 1005 1|15 low Small-Large isolated
## 859 3 12 1005 1|15 low Small-Large isolated
## 860 3 12 1005 1|15 low Small-Large isolated
## 861 3 12 1005 1|15 low Small-Large isolated
## 862 3 12 1005 1|15 low Small-Large isolated
## 863 3 12 1005 1|15 low Small-Large isolated
## 864 3 12 1005 1|15 low Small-Large isolated
## 865 4 16 1005 1|15 low Small-Large isolated
## 866 4 16 1005 1|15 low Small-Large isolated
## 867 4 16 1005 1|15 low Small-Large isolated
## 868 4 16 1005 1|15 low Small-Large isolated
## 869 4 16 1005 1|15 low Small-Large isolated
## 870 4 16 1005 1|15 low Small-Large isolated
## 871 4 16 1005 1|15 low Small-Large isolated
## 872 4 16 1005 1|15 low Small-Large isolated
## 873 4 16 1005 1|15 low Small-Large isolated
## 874 4 16 1005 1|15 low Small-Large isolated
## 875 4 16 1005 1|15 low Small-Large isolated
## 876 4 16 1005 1|15 low Small-Large isolated
## 877 4 16 1005 1|15 low Small-Large isolated
## 878 4 16 1005 1|15 low Small-Large isolated
## 879 4 16 1005 1|15 low Small-Large isolated
## 880 4 16 1005 1|15 low Small-Large isolated
## 881 4 16 1005 1|15 low Small-Large isolated
## 882 4 16 1005 1|15 low Small-Large isolated
## 883 4 16 1005 1|15 low Small-Large isolated
## 884 4 16 1005 1|15 low Small-Large isolated
## 885 4 16 1005 1|15 low Small-Large isolated
## 886 4 16 1005 1|15 low Small-Large isolated
## 887 4 16 1005 1|15 low Small-Large isolated
## 888 4 16 1005 1|15 low Small-Large isolated
## 889 5 20 1005 1|15 low Small-Large isolated
## 890 5 20 1005 1|15 low Small-Large isolated
## 891 5 20 1005 1|15 low Small-Large isolated
## 892 5 20 1005 1|15 low Small-Large isolated
## 893 5 20 1005 1|15 low Small-Large isolated
## 894 5 20 1005 1|15 low Small-Large isolated
## 895 5 20 1005 1|15 low Small-Large isolated
## 896 5 20 1005 1|15 low Small-Large isolated
## 897 5 20 1005 1|15 low Small-Large isolated
## 898 5 20 1005 1|15 low Small-Large isolated
## 899 5 20 1005 1|15 low Small-Large isolated
## 900 5 20 1005 1|15 low Small-Large isolated
## 901 5 20 1005 1|15 low Small-Large isolated
## 902 5 20 1005 1|15 low Small-Large isolated
## 903 5 20 1005 1|15 low Small-Large isolated
## 904 5 20 1005 1|15 low Small-Large isolated
## 905 5 20 1005 1|15 low Small-Large isolated
## 906 5 20 1005 1|15 low Small-Large isolated
## 907 5 20 1005 1|15 low Small-Large isolated
## 908 5 20 1005 1|15 low Small-Large isolated
## 909 5 20 1005 1|15 low Small-Large isolated
## 910 5 20 1005 1|15 low Small-Large isolated
## 911 5 20 1005 1|15 low Small-Large isolated
## 912 5 20 1005 1|15 low Small-Large isolated
## 913 6 24 1005 1|15 low Small-Large isolated
## 914 6 24 1005 1|15 low Small-Large isolated
## 915 6 24 1005 1|15 low Small-Large isolated
## 916 6 24 1005 1|15 low Small-Large isolated
## 917 6 24 1005 1|15 low Small-Large isolated
## 918 6 24 1005 1|15 low Small-Large isolated
## 919 6 24 1005 1|15 low Small-Large isolated
## 920 6 24 1005 1|15 low Small-Large isolated
## 921 6 24 1005 1|15 low Small-Large isolated
## 922 6 24 1005 1|15 low Small-Large isolated
## 923 6 24 1005 1|15 low Small-Large isolated
## 924 6 24 1005 1|15 low Small-Large isolated
## 925 6 24 1005 1|15 low Small-Large isolated
## 926 6 24 1005 1|15 low Small-Large isolated
## 927 6 24 1005 1|15 low Small-Large isolated
## 928 6 24 1005 1|15 low Small-Large isolated
## 929 6 24 1005 1|15 low Small-Large isolated
## 930 6 24 1005 1|15 low Small-Large isolated
## 931 6 24 1005 1|15 low Small-Large isolated
## 932 6 24 1005 1|15 low Small-Large isolated
## 933 6 24 1005 1|15 low Small-Large isolated
## 934 6 24 1005 1|15 low Small-Large isolated
## 935 6 24 1005 1|15 low Small-Large isolated
## 936 6 24 1005 1|15 low Small-Large isolated
## 937 7 28 1005 1|15 low Small-Large isolated
## 938 7 28 1005 1|15 low Small-Large isolated
## 939 7 28 1005 1|15 low Small-Large isolated
## 940 7 28 1005 1|15 low Small-Large isolated
## 941 7 28 1005 1|15 low Small-Large isolated
## 942 7 28 1005 1|15 low Small-Large isolated
## 943 7 28 1005 1|15 low Small-Large isolated
## 944 7 28 1005 1|15 low Small-Large isolated
## 945 7 28 1005 1|15 low Small-Large isolated
## 946 7 28 1005 1|15 low Small-Large isolated
## 947 7 28 1005 1|15 low Small-Large isolated
## 948 7 28 1005 1|15 low Small-Large isolated
## 949 7 28 1005 1|15 low Small-Large isolated
## 950 7 28 1005 1|15 low Small-Large isolated
## 951 7 28 1005 1|15 low Small-Large isolated
## 952 7 28 1005 1|15 low Small-Large isolated
## 953 7 28 1005 1|15 low Small-Large isolated
## 954 7 28 1005 1|15 low Small-Large isolated
## 955 7 28 1005 1|15 low Small-Large isolated
## 956 7 28 1005 1|15 low Small-Large isolated
## 957 7 28 1005 1|15 low Small-Large isolated
## 958 7 28 1005 1|15 low Small-Large isolated
## 959 7 28 1005 1|15 low Small-Large isolated
## 960 7 28 1005 1|15 low Small-Large isolated
## 961 0 0 1006 2|11 low Small-Large isolated
## 962 0 0 1006 2|11 low Small-Large isolated
## 963 0 0 1006 2|11 low Small-Large isolated
## 964 0 0 1006 2|11 low Small-Large isolated
## 965 0 0 1006 2|11 low Small-Large isolated
## 966 0 0 1006 2|11 low Small-Large isolated
## 967 0 0 1006 2|11 low Small-Large isolated
## 968 0 0 1006 2|11 low Small-Large isolated
## 969 0 0 1006 2|11 low Small-Large isolated
## 970 0 0 1006 2|11 low Small-Large isolated
## 971 0 0 1006 2|11 low Small-Large isolated
## 972 0 0 1006 2|11 low Small-Large isolated
## 973 0 0 1006 2|11 low Small-Large isolated
## 974 0 0 1006 2|11 low Small-Large isolated
## 975 0 0 1006 2|11 low Small-Large isolated
## 976 0 0 1006 2|11 low Small-Large isolated
## 977 0 0 1006 2|11 low Small-Large isolated
## 978 0 0 1006 2|11 low Small-Large isolated
## 979 0 0 1006 2|11 low Small-Large isolated
## 980 0 0 1006 2|11 low Small-Large isolated
## 981 0 0 1006 2|11 low Small-Large isolated
## 982 0 0 1006 2|11 low Small-Large isolated
## 983 0 0 1006 2|11 low Small-Large isolated
## 984 0 0 1006 2|11 low Small-Large isolated
## 985 1 4 1006 2|11 low Small-Large isolated
## 986 1 4 1006 2|11 low Small-Large isolated
## 987 1 4 1006 2|11 low Small-Large isolated
## 988 1 4 1006 2|11 low Small-Large isolated
## 989 1 4 1006 2|11 low Small-Large isolated
## 990 1 4 1006 2|11 low Small-Large isolated
## 991 1 4 1006 2|11 low Small-Large isolated
## 992 1 4 1006 2|11 low Small-Large isolated
## 993 1 4 1006 2|11 low Small-Large isolated
## 994 1 4 1006 2|11 low Small-Large isolated
## 995 1 4 1006 2|11 low Small-Large isolated
## 996 1 4 1006 2|11 low Small-Large isolated
## 997 1 4 1006 2|11 low Small-Large isolated
## 998 1 4 1006 2|11 low Small-Large isolated
## 999 1 4 1006 2|11 low Small-Large isolated
## 1000 1 4 1006 2|11 low Small-Large isolated
## 1001 1 4 1006 2|11 low Small-Large isolated
## 1002 1 4 1006 2|11 low Small-Large isolated
## 1003 1 4 1006 2|11 low Small-Large isolated
## 1004 1 4 1006 2|11 low Small-Large isolated
## 1005 1 4 1006 2|11 low Small-Large isolated
## 1006 1 4 1006 2|11 low Small-Large isolated
## 1007 1 4 1006 2|11 low Small-Large isolated
## 1008 1 4 1006 2|11 low Small-Large isolated
## 1009 2 8 1006 2|11 low Small-Large isolated
## 1010 2 8 1006 2|11 low Small-Large isolated
## 1011 2 8 1006 2|11 low Small-Large isolated
## 1012 2 8 1006 2|11 low Small-Large isolated
## 1013 2 8 1006 2|11 low Small-Large isolated
## 1014 2 8 1006 2|11 low Small-Large isolated
## 1015 2 8 1006 2|11 low Small-Large isolated
## 1016 2 8 1006 2|11 low Small-Large isolated
## 1017 2 8 1006 2|11 low Small-Large isolated
## 1018 2 8 1006 2|11 low Small-Large isolated
## 1019 2 8 1006 2|11 low Small-Large isolated
## 1020 2 8 1006 2|11 low Small-Large isolated
## 1021 2 8 1006 2|11 low Small-Large isolated
## 1022 2 8 1006 2|11 low Small-Large isolated
## 1023 2 8 1006 2|11 low Small-Large isolated
## 1024 2 8 1006 2|11 low Small-Large isolated
## 1025 2 8 1006 2|11 low Small-Large isolated
## 1026 2 8 1006 2|11 low Small-Large isolated
## 1027 2 8 1006 2|11 low Small-Large isolated
## 1028 2 8 1006 2|11 low Small-Large isolated
## 1029 2 8 1006 2|11 low Small-Large isolated
## 1030 2 8 1006 2|11 low Small-Large isolated
## 1031 2 8 1006 2|11 low Small-Large isolated
## 1032 2 8 1006 2|11 low Small-Large isolated
## 1033 3 12 1006 2|11 low Small-Large isolated
## 1034 3 12 1006 2|11 low Small-Large isolated
## 1035 3 12 1006 2|11 low Small-Large isolated
## 1036 3 12 1006 2|11 low Small-Large isolated
## 1037 3 12 1006 2|11 low Small-Large isolated
## 1038 3 12 1006 2|11 low Small-Large isolated
## 1039 3 12 1006 2|11 low Small-Large isolated
## 1040 3 12 1006 2|11 low Small-Large isolated
## 1041 3 12 1006 2|11 low Small-Large isolated
## 1042 3 12 1006 2|11 low Small-Large isolated
## 1043 3 12 1006 2|11 low Small-Large isolated
## 1044 3 12 1006 2|11 low Small-Large isolated
## 1045 3 12 1006 2|11 low Small-Large isolated
## 1046 3 12 1006 2|11 low Small-Large isolated
## 1047 3 12 1006 2|11 low Small-Large isolated
## 1048 3 12 1006 2|11 low Small-Large isolated
## 1049 3 12 1006 2|11 low Small-Large isolated
## 1050 3 12 1006 2|11 low Small-Large isolated
## 1051 3 12 1006 2|11 low Small-Large isolated
## 1052 3 12 1006 2|11 low Small-Large isolated
## 1053 3 12 1006 2|11 low Small-Large isolated
## 1054 3 12 1006 2|11 low Small-Large isolated
## 1055 3 12 1006 2|11 low Small-Large isolated
## 1056 3 12 1006 2|11 low Small-Large isolated
## 1057 4 16 1006 2|11 low Small-Large isolated
## 1058 4 16 1006 2|11 low Small-Large isolated
## 1059 4 16 1006 2|11 low Small-Large isolated
## 1060 4 16 1006 2|11 low Small-Large isolated
## 1061 4 16 1006 2|11 low Small-Large isolated
## 1062 4 16 1006 2|11 low Small-Large isolated
## 1063 4 16 1006 2|11 low Small-Large isolated
## 1064 4 16 1006 2|11 low Small-Large isolated
## 1065 4 16 1006 2|11 low Small-Large isolated
## 1066 4 16 1006 2|11 low Small-Large isolated
## 1067 4 16 1006 2|11 low Small-Large isolated
## 1068 4 16 1006 2|11 low Small-Large isolated
## 1069 4 16 1006 2|11 low Small-Large isolated
## 1070 4 16 1006 2|11 low Small-Large isolated
## 1071 4 16 1006 2|11 low Small-Large isolated
## 1072 4 16 1006 2|11 low Small-Large isolated
## 1073 4 16 1006 2|11 low Small-Large isolated
## 1074 4 16 1006 2|11 low Small-Large isolated
## 1075 4 16 1006 2|11 low Small-Large isolated
## 1076 4 16 1006 2|11 low Small-Large isolated
## 1077 4 16 1006 2|11 low Small-Large isolated
## 1078 4 16 1006 2|11 low Small-Large isolated
## 1079 4 16 1006 2|11 low Small-Large isolated
## 1080 4 16 1006 2|11 low Small-Large isolated
## 1081 5 20 1006 2|11 low Small-Large isolated
## 1082 5 20 1006 2|11 low Small-Large isolated
## 1083 5 20 1006 2|11 low Small-Large isolated
## 1084 5 20 1006 2|11 low Small-Large isolated
## 1085 5 20 1006 2|11 low Small-Large isolated
## 1086 5 20 1006 2|11 low Small-Large isolated
## 1087 5 20 1006 2|11 low Small-Large isolated
## 1088 5 20 1006 2|11 low Small-Large isolated
## 1089 5 20 1006 2|11 low Small-Large isolated
## 1090 5 20 1006 2|11 low Small-Large isolated
## 1091 5 20 1006 2|11 low Small-Large isolated
## 1092 5 20 1006 2|11 low Small-Large isolated
## 1093 5 20 1006 2|11 low Small-Large isolated
## 1094 5 20 1006 2|11 low Small-Large isolated
## 1095 5 20 1006 2|11 low Small-Large isolated
## 1096 5 20 1006 2|11 low Small-Large isolated
## 1097 5 20 1006 2|11 low Small-Large isolated
## 1098 5 20 1006 2|11 low Small-Large isolated
## 1099 5 20 1006 2|11 low Small-Large isolated
## 1100 5 20 1006 2|11 low Small-Large isolated
## 1101 5 20 1006 2|11 low Small-Large isolated
## 1102 5 20 1006 2|11 low Small-Large isolated
## 1103 5 20 1006 2|11 low Small-Large isolated
## 1104 5 20 1006 2|11 low Small-Large isolated
## 1105 6 24 1006 2|11 low Small-Large isolated
## 1106 6 24 1006 2|11 low Small-Large isolated
## 1107 6 24 1006 2|11 low Small-Large isolated
## 1108 6 24 1006 2|11 low Small-Large isolated
## 1109 6 24 1006 2|11 low Small-Large isolated
## 1110 6 24 1006 2|11 low Small-Large isolated
## 1111 6 24 1006 2|11 low Small-Large isolated
## 1112 6 24 1006 2|11 low Small-Large isolated
## 1113 6 24 1006 2|11 low Small-Large isolated
## 1114 6 24 1006 2|11 low Small-Large isolated
## 1115 6 24 1006 2|11 low Small-Large isolated
## 1116 6 24 1006 2|11 low Small-Large isolated
## 1117 6 24 1006 2|11 low Small-Large isolated
## 1118 6 24 1006 2|11 low Small-Large isolated
## 1119 6 24 1006 2|11 low Small-Large isolated
## 1120 6 24 1006 2|11 low Small-Large isolated
## 1121 6 24 1006 2|11 low Small-Large isolated
## 1122 6 24 1006 2|11 low Small-Large isolated
## 1123 6 24 1006 2|11 low Small-Large isolated
## 1124 6 24 1006 2|11 low Small-Large isolated
## 1125 6 24 1006 2|11 low Small-Large isolated
## 1126 6 24 1006 2|11 low Small-Large isolated
## 1127 6 24 1006 2|11 low Small-Large isolated
## 1128 6 24 1006 2|11 low Small-Large isolated
## 1129 7 28 1006 2|11 low Small-Large isolated
## 1130 7 28 1006 2|11 low Small-Large isolated
## 1131 7 28 1006 2|11 low Small-Large isolated
## 1132 7 28 1006 2|11 low Small-Large isolated
## 1133 7 28 1006 2|11 low Small-Large isolated
## 1134 7 28 1006 2|11 low Small-Large isolated
## 1135 7 28 1006 2|11 low Small-Large isolated
## 1136 7 28 1006 2|11 low Small-Large isolated
## 1137 7 28 1006 2|11 low Small-Large isolated
## 1138 7 28 1006 2|11 low Small-Large isolated
## 1139 7 28 1006 2|11 low Small-Large isolated
## 1140 7 28 1006 2|11 low Small-Large isolated
## 1141 7 28 1006 2|11 low Small-Large isolated
## 1142 7 28 1006 2|11 low Small-Large isolated
## 1143 7 28 1006 2|11 low Small-Large isolated
## 1144 7 28 1006 2|11 low Small-Large isolated
## 1145 7 28 1006 2|11 low Small-Large isolated
## 1146 7 28 1006 2|11 low Small-Large isolated
## 1147 7 28 1006 2|11 low Small-Large isolated
## 1148 7 28 1006 2|11 low Small-Large isolated
## 1149 7 28 1006 2|11 low Small-Large isolated
## 1150 7 28 1006 2|11 low Small-Large isolated
## 1151 7 28 1006 2|11 low Small-Large isolated
## 1152 7 28 1006 2|11 low Small-Large isolated
## 1153 0 0 1007 2|12 low Small-Large isolated
## 1154 0 0 1007 2|12 low Small-Large isolated
## 1155 0 0 1007 2|12 low Small-Large isolated
## 1156 0 0 1007 2|12 low Small-Large isolated
## 1157 0 0 1007 2|12 low Small-Large isolated
## 1158 0 0 1007 2|12 low Small-Large isolated
## 1159 0 0 1007 2|12 low Small-Large isolated
## 1160 0 0 1007 2|12 low Small-Large isolated
## 1161 0 0 1007 2|12 low Small-Large isolated
## 1162 0 0 1007 2|12 low Small-Large isolated
## 1163 0 0 1007 2|12 low Small-Large isolated
## 1164 0 0 1007 2|12 low Small-Large isolated
## 1165 0 0 1007 2|12 low Small-Large isolated
## 1166 0 0 1007 2|12 low Small-Large isolated
## 1167 0 0 1007 2|12 low Small-Large isolated
## 1168 0 0 1007 2|12 low Small-Large isolated
## 1169 0 0 1007 2|12 low Small-Large isolated
## 1170 0 0 1007 2|12 low Small-Large isolated
## 1171 0 0 1007 2|12 low Small-Large isolated
## 1172 0 0 1007 2|12 low Small-Large isolated
## 1173 0 0 1007 2|12 low Small-Large isolated
## 1174 0 0 1007 2|12 low Small-Large isolated
## 1175 0 0 1007 2|12 low Small-Large isolated
## 1176 0 0 1007 2|12 low Small-Large isolated
## 1177 1 4 1007 2|12 low Small-Large isolated
## 1178 1 4 1007 2|12 low Small-Large isolated
## 1179 1 4 1007 2|12 low Small-Large isolated
## 1180 1 4 1007 2|12 low Small-Large isolated
## 1181 1 4 1007 2|12 low Small-Large isolated
## 1182 1 4 1007 2|12 low Small-Large isolated
## 1183 1 4 1007 2|12 low Small-Large isolated
## 1184 1 4 1007 2|12 low Small-Large isolated
## 1185 1 4 1007 2|12 low Small-Large isolated
## 1186 1 4 1007 2|12 low Small-Large isolated
## 1187 1 4 1007 2|12 low Small-Large isolated
## 1188 1 4 1007 2|12 low Small-Large isolated
## 1189 1 4 1007 2|12 low Small-Large isolated
## 1190 1 4 1007 2|12 low Small-Large isolated
## 1191 1 4 1007 2|12 low Small-Large isolated
## 1192 1 4 1007 2|12 low Small-Large isolated
## 1193 1 4 1007 2|12 low Small-Large isolated
## 1194 1 4 1007 2|12 low Small-Large isolated
## 1195 1 4 1007 2|12 low Small-Large isolated
## 1196 1 4 1007 2|12 low Small-Large isolated
## 1197 1 4 1007 2|12 low Small-Large isolated
## 1198 1 4 1007 2|12 low Small-Large isolated
## 1199 1 4 1007 2|12 low Small-Large isolated
## 1200 1 4 1007 2|12 low Small-Large isolated
## 1201 2 8 1007 2|12 low Small-Large isolated
## 1202 2 8 1007 2|12 low Small-Large isolated
## 1203 2 8 1007 2|12 low Small-Large isolated
## 1204 2 8 1007 2|12 low Small-Large isolated
## 1205 2 8 1007 2|12 low Small-Large isolated
## 1206 2 8 1007 2|12 low Small-Large isolated
## 1207 2 8 1007 2|12 low Small-Large isolated
## 1208 2 8 1007 2|12 low Small-Large isolated
## 1209 2 8 1007 2|12 low Small-Large isolated
## 1210 2 8 1007 2|12 low Small-Large isolated
## 1211 2 8 1007 2|12 low Small-Large isolated
## 1212 2 8 1007 2|12 low Small-Large isolated
## 1213 2 8 1007 2|12 low Small-Large isolated
## 1214 2 8 1007 2|12 low Small-Large isolated
## 1215 2 8 1007 2|12 low Small-Large isolated
## 1216 2 8 1007 2|12 low Small-Large isolated
## 1217 2 8 1007 2|12 low Small-Large isolated
## 1218 2 8 1007 2|12 low Small-Large isolated
## 1219 2 8 1007 2|12 low Small-Large isolated
## 1220 2 8 1007 2|12 low Small-Large isolated
## 1221 2 8 1007 2|12 low Small-Large isolated
## 1222 2 8 1007 2|12 low Small-Large isolated
## 1223 2 8 1007 2|12 low Small-Large isolated
## 1224 2 8 1007 2|12 low Small-Large isolated
## 1225 3 12 1007 2|12 low Small-Large isolated
## 1226 3 12 1007 2|12 low Small-Large isolated
## 1227 3 12 1007 2|12 low Small-Large isolated
## 1228 3 12 1007 2|12 low Small-Large isolated
## 1229 3 12 1007 2|12 low Small-Large isolated
## 1230 3 12 1007 2|12 low Small-Large isolated
## 1231 3 12 1007 2|12 low Small-Large isolated
## 1232 3 12 1007 2|12 low Small-Large isolated
## 1233 3 12 1007 2|12 low Small-Large isolated
## 1234 3 12 1007 2|12 low Small-Large isolated
## 1235 3 12 1007 2|12 low Small-Large isolated
## 1236 3 12 1007 2|12 low Small-Large isolated
## 1237 3 12 1007 2|12 low Small-Large isolated
## 1238 3 12 1007 2|12 low Small-Large isolated
## 1239 3 12 1007 2|12 low Small-Large isolated
## 1240 3 12 1007 2|12 low Small-Large isolated
## 1241 3 12 1007 2|12 low Small-Large isolated
## 1242 3 12 1007 2|12 low Small-Large isolated
## 1243 3 12 1007 2|12 low Small-Large isolated
## 1244 3 12 1007 2|12 low Small-Large isolated
## 1245 3 12 1007 2|12 low Small-Large isolated
## 1246 3 12 1007 2|12 low Small-Large isolated
## 1247 3 12 1007 2|12 low Small-Large isolated
## 1248 3 12 1007 2|12 low Small-Large isolated
## 1249 4 16 1007 2|12 low Small-Large isolated
## 1250 4 16 1007 2|12 low Small-Large isolated
## 1251 4 16 1007 2|12 low Small-Large isolated
## 1252 4 16 1007 2|12 low Small-Large isolated
## 1253 4 16 1007 2|12 low Small-Large isolated
## 1254 4 16 1007 2|12 low Small-Large isolated
## 1255 4 16 1007 2|12 low Small-Large isolated
## 1256 4 16 1007 2|12 low Small-Large isolated
## 1257 4 16 1007 2|12 low Small-Large isolated
## 1258 4 16 1007 2|12 low Small-Large isolated
## 1259 4 16 1007 2|12 low Small-Large isolated
## 1260 4 16 1007 2|12 low Small-Large isolated
## 1261 4 16 1007 2|12 low Small-Large isolated
## 1262 4 16 1007 2|12 low Small-Large isolated
## 1263 4 16 1007 2|12 low Small-Large isolated
## 1264 4 16 1007 2|12 low Small-Large isolated
## 1265 4 16 1007 2|12 low Small-Large isolated
## 1266 4 16 1007 2|12 low Small-Large isolated
## 1267 4 16 1007 2|12 low Small-Large isolated
## 1268 4 16 1007 2|12 low Small-Large isolated
## 1269 4 16 1007 2|12 low Small-Large isolated
## 1270 4 16 1007 2|12 low Small-Large isolated
## 1271 4 16 1007 2|12 low Small-Large isolated
## 1272 4 16 1007 2|12 low Small-Large isolated
## 1273 5 20 1007 2|12 low Small-Large isolated
## 1274 5 20 1007 2|12 low Small-Large isolated
## 1275 5 20 1007 2|12 low Small-Large isolated
## 1276 5 20 1007 2|12 low Small-Large isolated
## 1277 5 20 1007 2|12 low Small-Large isolated
## 1278 5 20 1007 2|12 low Small-Large isolated
## 1279 5 20 1007 2|12 low Small-Large isolated
## 1280 5 20 1007 2|12 low Small-Large isolated
## 1281 5 20 1007 2|12 low Small-Large isolated
## 1282 5 20 1007 2|12 low Small-Large isolated
## 1283 5 20 1007 2|12 low Small-Large isolated
## 1284 5 20 1007 2|12 low Small-Large isolated
## 1285 5 20 1007 2|12 low Small-Large isolated
## 1286 5 20 1007 2|12 low Small-Large isolated
## 1287 5 20 1007 2|12 low Small-Large isolated
## 1288 5 20 1007 2|12 low Small-Large isolated
## 1289 5 20 1007 2|12 low Small-Large isolated
## 1290 5 20 1007 2|12 low Small-Large isolated
## 1291 5 20 1007 2|12 low Small-Large isolated
## 1292 5 20 1007 2|12 low Small-Large isolated
## 1293 5 20 1007 2|12 low Small-Large isolated
## 1294 5 20 1007 2|12 low Small-Large isolated
## 1295 5 20 1007 2|12 low Small-Large isolated
## 1296 5 20 1007 2|12 low Small-Large isolated
## 1297 6 24 1007 2|12 low Small-Large isolated
## 1298 6 24 1007 2|12 low Small-Large isolated
## 1299 6 24 1007 2|12 low Small-Large isolated
## 1300 6 24 1007 2|12 low Small-Large isolated
## 1301 6 24 1007 2|12 low Small-Large isolated
## 1302 6 24 1007 2|12 low Small-Large isolated
## 1303 6 24 1007 2|12 low Small-Large isolated
## 1304 6 24 1007 2|12 low Small-Large isolated
## 1305 6 24 1007 2|12 low Small-Large isolated
## 1306 6 24 1007 2|12 low Small-Large isolated
## 1307 6 24 1007 2|12 low Small-Large isolated
## 1308 6 24 1007 2|12 low Small-Large isolated
## 1309 6 24 1007 2|12 low Small-Large isolated
## 1310 6 24 1007 2|12 low Small-Large isolated
## 1311 6 24 1007 2|12 low Small-Large isolated
## 1312 6 24 1007 2|12 low Small-Large isolated
## 1313 6 24 1007 2|12 low Small-Large isolated
## 1314 6 24 1007 2|12 low Small-Large isolated
## 1315 6 24 1007 2|12 low Small-Large isolated
## 1316 6 24 1007 2|12 low Small-Large isolated
## 1317 6 24 1007 2|12 low Small-Large isolated
## 1318 6 24 1007 2|12 low Small-Large isolated
## 1319 6 24 1007 2|12 low Small-Large isolated
## 1320 6 24 1007 2|12 low Small-Large isolated
## 1321 7 28 1007 2|12 low Small-Large isolated
## 1322 7 28 1007 2|12 low Small-Large isolated
## 1323 7 28 1007 2|12 low Small-Large isolated
## 1324 7 28 1007 2|12 low Small-Large isolated
## 1325 7 28 1007 2|12 low Small-Large isolated
## 1326 7 28 1007 2|12 low Small-Large isolated
## 1327 7 28 1007 2|12 low Small-Large isolated
## 1328 7 28 1007 2|12 low Small-Large isolated
## 1329 7 28 1007 2|12 low Small-Large isolated
## 1330 7 28 1007 2|12 low Small-Large isolated
## 1331 7 28 1007 2|12 low Small-Large isolated
## 1332 7 28 1007 2|12 low Small-Large isolated
## 1333 7 28 1007 2|12 low Small-Large isolated
## 1334 7 28 1007 2|12 low Small-Large isolated
## 1335 7 28 1007 2|12 low Small-Large isolated
## 1336 7 28 1007 2|12 low Small-Large isolated
## 1337 7 28 1007 2|12 low Small-Large isolated
## 1338 7 28 1007 2|12 low Small-Large isolated
## 1339 7 28 1007 2|12 low Small-Large isolated
## 1340 7 28 1007 2|12 low Small-Large isolated
## 1341 7 28 1007 2|12 low Small-Large isolated
## 1342 7 28 1007 2|12 low Small-Large isolated
## 1343 7 28 1007 2|12 low Small-Large isolated
## 1344 7 28 1007 2|12 low Small-Large isolated
## 1345 0 0 1008 2|13 low Small-Large isolated
## 1346 0 0 1008 2|13 low Small-Large isolated
## 1347 0 0 1008 2|13 low Small-Large isolated
## 1348 0 0 1008 2|13 low Small-Large isolated
## 1349 0 0 1008 2|13 low Small-Large isolated
## 1350 0 0 1008 2|13 low Small-Large isolated
## 1351 0 0 1008 2|13 low Small-Large isolated
## 1352 0 0 1008 2|13 low Small-Large isolated
## 1353 0 0 1008 2|13 low Small-Large isolated
## 1354 0 0 1008 2|13 low Small-Large isolated
## 1355 0 0 1008 2|13 low Small-Large isolated
## 1356 0 0 1008 2|13 low Small-Large isolated
## 1357 0 0 1008 2|13 low Small-Large isolated
## 1358 0 0 1008 2|13 low Small-Large isolated
## 1359 0 0 1008 2|13 low Small-Large isolated
## 1360 0 0 1008 2|13 low Small-Large isolated
## 1361 0 0 1008 2|13 low Small-Large isolated
## 1362 0 0 1008 2|13 low Small-Large isolated
## 1363 0 0 1008 2|13 low Small-Large isolated
## 1364 0 0 1008 2|13 low Small-Large isolated
## 1365 0 0 1008 2|13 low Small-Large isolated
## 1366 0 0 1008 2|13 low Small-Large isolated
## 1367 0 0 1008 2|13 low Small-Large isolated
## 1368 0 0 1008 2|13 low Small-Large isolated
## 1369 1 4 1008 2|13 low Small-Large isolated
## 1370 1 4 1008 2|13 low Small-Large isolated
## 1371 1 4 1008 2|13 low Small-Large isolated
## 1372 1 4 1008 2|13 low Small-Large isolated
## 1373 1 4 1008 2|13 low Small-Large isolated
## 1374 1 4 1008 2|13 low Small-Large isolated
## 1375 1 4 1008 2|13 low Small-Large isolated
## 1376 1 4 1008 2|13 low Small-Large isolated
## 1377 1 4 1008 2|13 low Small-Large isolated
## 1378 1 4 1008 2|13 low Small-Large isolated
## 1379 1 4 1008 2|13 low Small-Large isolated
## 1380 1 4 1008 2|13 low Small-Large isolated
## 1381 1 4 1008 2|13 low Small-Large isolated
## 1382 1 4 1008 2|13 low Small-Large isolated
## 1383 1 4 1008 2|13 low Small-Large isolated
## 1384 1 4 1008 2|13 low Small-Large isolated
## 1385 1 4 1008 2|13 low Small-Large isolated
## 1386 1 4 1008 2|13 low Small-Large isolated
## 1387 1 4 1008 2|13 low Small-Large isolated
## 1388 1 4 1008 2|13 low Small-Large isolated
## 1389 1 4 1008 2|13 low Small-Large isolated
## 1390 1 4 1008 2|13 low Small-Large isolated
## 1391 1 4 1008 2|13 low Small-Large isolated
## 1392 1 4 1008 2|13 low Small-Large isolated
## 1393 2 8 1008 2|13 low Small-Large isolated
## 1394 2 8 1008 2|13 low Small-Large isolated
## 1395 2 8 1008 2|13 low Small-Large isolated
## 1396 2 8 1008 2|13 low Small-Large isolated
## 1397 2 8 1008 2|13 low Small-Large isolated
## 1398 2 8 1008 2|13 low Small-Large isolated
## 1399 2 8 1008 2|13 low Small-Large isolated
## 1400 2 8 1008 2|13 low Small-Large isolated
## 1401 2 8 1008 2|13 low Small-Large isolated
## 1402 2 8 1008 2|13 low Small-Large isolated
## 1403 2 8 1008 2|13 low Small-Large isolated
## 1404 2 8 1008 2|13 low Small-Large isolated
## 1405 2 8 1008 2|13 low Small-Large isolated
## 1406 2 8 1008 2|13 low Small-Large isolated
## 1407 2 8 1008 2|13 low Small-Large isolated
## 1408 2 8 1008 2|13 low Small-Large isolated
## 1409 2 8 1008 2|13 low Small-Large isolated
## 1410 2 8 1008 2|13 low Small-Large isolated
## 1411 2 8 1008 2|13 low Small-Large isolated
## 1412 2 8 1008 2|13 low Small-Large isolated
## 1413 2 8 1008 2|13 low Small-Large isolated
## 1414 2 8 1008 2|13 low Small-Large isolated
## 1415 2 8 1008 2|13 low Small-Large isolated
## 1416 2 8 1008 2|13 low Small-Large isolated
## 1417 3 12 1008 2|13 low Small-Large isolated
## 1418 3 12 1008 2|13 low Small-Large isolated
## 1419 3 12 1008 2|13 low Small-Large isolated
## 1420 3 12 1008 2|13 low Small-Large isolated
## 1421 3 12 1008 2|13 low Small-Large isolated
## 1422 3 12 1008 2|13 low Small-Large isolated
## 1423 3 12 1008 2|13 low Small-Large isolated
## 1424 3 12 1008 2|13 low Small-Large isolated
## 1425 3 12 1008 2|13 low Small-Large isolated
## 1426 3 12 1008 2|13 low Small-Large isolated
## 1427 3 12 1008 2|13 low Small-Large isolated
## 1428 3 12 1008 2|13 low Small-Large isolated
## 1429 3 12 1008 2|13 low Small-Large isolated
## 1430 3 12 1008 2|13 low Small-Large isolated
## 1431 3 12 1008 2|13 low Small-Large isolated
## 1432 3 12 1008 2|13 low Small-Large isolated
## 1433 3 12 1008 2|13 low Small-Large isolated
## 1434 3 12 1008 2|13 low Small-Large isolated
## 1435 3 12 1008 2|13 low Small-Large isolated
## 1436 3 12 1008 2|13 low Small-Large isolated
## 1437 3 12 1008 2|13 low Small-Large isolated
## 1438 3 12 1008 2|13 low Small-Large isolated
## 1439 3 12 1008 2|13 low Small-Large isolated
## 1440 3 12 1008 2|13 low Small-Large isolated
## 1441 4 16 1008 2|13 low Small-Large isolated
## 1442 4 16 1008 2|13 low Small-Large isolated
## 1443 4 16 1008 2|13 low Small-Large isolated
## 1444 4 16 1008 2|13 low Small-Large isolated
## 1445 4 16 1008 2|13 low Small-Large isolated
## 1446 4 16 1008 2|13 low Small-Large isolated
## 1447 4 16 1008 2|13 low Small-Large isolated
## 1448 4 16 1008 2|13 low Small-Large isolated
## 1449 4 16 1008 2|13 low Small-Large isolated
## 1450 4 16 1008 2|13 low Small-Large isolated
## 1451 4 16 1008 2|13 low Small-Large isolated
## 1452 4 16 1008 2|13 low Small-Large isolated
## 1453 4 16 1008 2|13 low Small-Large isolated
## 1454 4 16 1008 2|13 low Small-Large isolated
## 1455 4 16 1008 2|13 low Small-Large isolated
## 1456 4 16 1008 2|13 low Small-Large isolated
## 1457 4 16 1008 2|13 low Small-Large isolated
## 1458 4 16 1008 2|13 low Small-Large isolated
## 1459 4 16 1008 2|13 low Small-Large isolated
## 1460 4 16 1008 2|13 low Small-Large isolated
## 1461 4 16 1008 2|13 low Small-Large isolated
## 1462 4 16 1008 2|13 low Small-Large isolated
## 1463 4 16 1008 2|13 low Small-Large isolated
## 1464 4 16 1008 2|13 low Small-Large isolated
## 1465 5 20 1008 2|13 low Small-Large isolated
## 1466 5 20 1008 2|13 low Small-Large isolated
## 1467 5 20 1008 2|13 low Small-Large isolated
## 1468 5 20 1008 2|13 low Small-Large isolated
## 1469 5 20 1008 2|13 low Small-Large isolated
## 1470 5 20 1008 2|13 low Small-Large isolated
## 1471 5 20 1008 2|13 low Small-Large isolated
## 1472 5 20 1008 2|13 low Small-Large isolated
## 1473 5 20 1008 2|13 low Small-Large isolated
## 1474 5 20 1008 2|13 low Small-Large isolated
## 1475 5 20 1008 2|13 low Small-Large isolated
## 1476 5 20 1008 2|13 low Small-Large isolated
## 1477 5 20 1008 2|13 low Small-Large isolated
## 1478 5 20 1008 2|13 low Small-Large isolated
## 1479 5 20 1008 2|13 low Small-Large isolated
## 1480 5 20 1008 2|13 low Small-Large isolated
## 1481 5 20 1008 2|13 low Small-Large isolated
## 1482 5 20 1008 2|13 low Small-Large isolated
## 1483 5 20 1008 2|13 low Small-Large isolated
## 1484 5 20 1008 2|13 low Small-Large isolated
## 1485 5 20 1008 2|13 low Small-Large isolated
## 1486 5 20 1008 2|13 low Small-Large isolated
## 1487 5 20 1008 2|13 low Small-Large isolated
## 1488 5 20 1008 2|13 low Small-Large isolated
## 1489 6 24 1008 2|13 low Small-Large isolated
## 1490 6 24 1008 2|13 low Small-Large isolated
## 1491 6 24 1008 2|13 low Small-Large isolated
## 1492 6 24 1008 2|13 low Small-Large isolated
## 1493 6 24 1008 2|13 low Small-Large isolated
## 1494 6 24 1008 2|13 low Small-Large isolated
## 1495 6 24 1008 2|13 low Small-Large isolated
## 1496 6 24 1008 2|13 low Small-Large isolated
## 1497 6 24 1008 2|13 low Small-Large isolated
## 1498 6 24 1008 2|13 low Small-Large isolated
## 1499 6 24 1008 2|13 low Small-Large isolated
## 1500 6 24 1008 2|13 low Small-Large isolated
## 1501 6 24 1008 2|13 low Small-Large isolated
## 1502 6 24 1008 2|13 low Small-Large isolated
## 1503 6 24 1008 2|13 low Small-Large isolated
## 1504 6 24 1008 2|13 low Small-Large isolated
## 1505 6 24 1008 2|13 low Small-Large isolated
## 1506 6 24 1008 2|13 low Small-Large isolated
## 1507 6 24 1008 2|13 low Small-Large isolated
## 1508 6 24 1008 2|13 low Small-Large isolated
## 1509 6 24 1008 2|13 low Small-Large isolated
## 1510 6 24 1008 2|13 low Small-Large isolated
## 1511 6 24 1008 2|13 low Small-Large isolated
## 1512 6 24 1008 2|13 low Small-Large isolated
## 1513 7 28 1008 2|13 low Small-Large isolated
## 1514 7 28 1008 2|13 low Small-Large isolated
## 1515 7 28 1008 2|13 low Small-Large isolated
## 1516 7 28 1008 2|13 low Small-Large isolated
## 1517 7 28 1008 2|13 low Small-Large isolated
## 1518 7 28 1008 2|13 low Small-Large isolated
## 1519 7 28 1008 2|13 low Small-Large isolated
## 1520 7 28 1008 2|13 low Small-Large isolated
## 1521 7 28 1008 2|13 low Small-Large isolated
## 1522 7 28 1008 2|13 low Small-Large isolated
## 1523 7 28 1008 2|13 low Small-Large isolated
## 1524 7 28 1008 2|13 low Small-Large isolated
## 1525 7 28 1008 2|13 low Small-Large isolated
## 1526 7 28 1008 2|13 low Small-Large isolated
## 1527 7 28 1008 2|13 low Small-Large isolated
## 1528 7 28 1008 2|13 low Small-Large isolated
## 1529 7 28 1008 2|13 low Small-Large isolated
## 1530 7 28 1008 2|13 low Small-Large isolated
## 1531 7 28 1008 2|13 low Small-Large isolated
## 1532 7 28 1008 2|13 low Small-Large isolated
## 1533 7 28 1008 2|13 low Small-Large isolated
## 1534 7 28 1008 2|13 low Small-Large isolated
## 1535 7 28 1008 2|13 low Small-Large isolated
## 1536 7 28 1008 2|13 low Small-Large isolated
## 1537 0 0 1009 2|14 low Small-Large isolated
## 1538 0 0 1009 2|14 low Small-Large isolated
## 1539 0 0 1009 2|14 low Small-Large isolated
## 1540 0 0 1009 2|14 low Small-Large isolated
## 1541 0 0 1009 2|14 low Small-Large isolated
## 1542 0 0 1009 2|14 low Small-Large isolated
## 1543 0 0 1009 2|14 low Small-Large isolated
## 1544 0 0 1009 2|14 low Small-Large isolated
## 1545 0 0 1009 2|14 low Small-Large isolated
## 1546 0 0 1009 2|14 low Small-Large isolated
## 1547 0 0 1009 2|14 low Small-Large isolated
## 1548 0 0 1009 2|14 low Small-Large isolated
## 1549 0 0 1009 2|14 low Small-Large isolated
## 1550 0 0 1009 2|14 low Small-Large isolated
## 1551 0 0 1009 2|14 low Small-Large isolated
## 1552 0 0 1009 2|14 low Small-Large isolated
## 1553 0 0 1009 2|14 low Small-Large isolated
## 1554 0 0 1009 2|14 low Small-Large isolated
## 1555 0 0 1009 2|14 low Small-Large isolated
## 1556 0 0 1009 2|14 low Small-Large isolated
## 1557 0 0 1009 2|14 low Small-Large isolated
## 1558 0 0 1009 2|14 low Small-Large isolated
## 1559 0 0 1009 2|14 low Small-Large isolated
## 1560 0 0 1009 2|14 low Small-Large isolated
## 1561 1 4 1009 2|14 low Small-Large isolated
## 1562 1 4 1009 2|14 low Small-Large isolated
## 1563 1 4 1009 2|14 low Small-Large isolated
## 1564 1 4 1009 2|14 low Small-Large isolated
## 1565 1 4 1009 2|14 low Small-Large isolated
## 1566 1 4 1009 2|14 low Small-Large isolated
## 1567 1 4 1009 2|14 low Small-Large isolated
## 1568 1 4 1009 2|14 low Small-Large isolated
## 1569 1 4 1009 2|14 low Small-Large isolated
## 1570 1 4 1009 2|14 low Small-Large isolated
## 1571 1 4 1009 2|14 low Small-Large isolated
## 1572 1 4 1009 2|14 low Small-Large isolated
## 1573 1 4 1009 2|14 low Small-Large isolated
## 1574 1 4 1009 2|14 low Small-Large isolated
## 1575 1 4 1009 2|14 low Small-Large isolated
## 1576 1 4 1009 2|14 low Small-Large isolated
## 1577 1 4 1009 2|14 low Small-Large isolated
## 1578 1 4 1009 2|14 low Small-Large isolated
## 1579 1 4 1009 2|14 low Small-Large isolated
## 1580 1 4 1009 2|14 low Small-Large isolated
## 1581 1 4 1009 2|14 low Small-Large isolated
## 1582 1 4 1009 2|14 low Small-Large isolated
## 1583 1 4 1009 2|14 low Small-Large isolated
## 1584 1 4 1009 2|14 low Small-Large isolated
## 1585 2 8 1009 2|14 low Small-Large isolated
## 1586 2 8 1009 2|14 low Small-Large isolated
## 1587 2 8 1009 2|14 low Small-Large isolated
## 1588 2 8 1009 2|14 low Small-Large isolated
## 1589 2 8 1009 2|14 low Small-Large isolated
## 1590 2 8 1009 2|14 low Small-Large isolated
## 1591 2 8 1009 2|14 low Small-Large isolated
## 1592 2 8 1009 2|14 low Small-Large isolated
## 1593 2 8 1009 2|14 low Small-Large isolated
## 1594 2 8 1009 2|14 low Small-Large isolated
## 1595 2 8 1009 2|14 low Small-Large isolated
## 1596 2 8 1009 2|14 low Small-Large isolated
## 1597 2 8 1009 2|14 low Small-Large isolated
## 1598 2 8 1009 2|14 low Small-Large isolated
## 1599 2 8 1009 2|14 low Small-Large isolated
## 1600 2 8 1009 2|14 low Small-Large isolated
## 1601 2 8 1009 2|14 low Small-Large isolated
## 1602 2 8 1009 2|14 low Small-Large isolated
## 1603 2 8 1009 2|14 low Small-Large isolated
## 1604 2 8 1009 2|14 low Small-Large isolated
## 1605 2 8 1009 2|14 low Small-Large isolated
## 1606 2 8 1009 2|14 low Small-Large isolated
## 1607 2 8 1009 2|14 low Small-Large isolated
## 1608 2 8 1009 2|14 low Small-Large isolated
## 1609 3 12 1009 2|14 low Small-Large isolated
## 1610 3 12 1009 2|14 low Small-Large isolated
## 1611 3 12 1009 2|14 low Small-Large isolated
## 1612 3 12 1009 2|14 low Small-Large isolated
## 1613 3 12 1009 2|14 low Small-Large isolated
## 1614 3 12 1009 2|14 low Small-Large isolated
## 1615 3 12 1009 2|14 low Small-Large isolated
## 1616 3 12 1009 2|14 low Small-Large isolated
## 1617 3 12 1009 2|14 low Small-Large isolated
## 1618 3 12 1009 2|14 low Small-Large isolated
## 1619 3 12 1009 2|14 low Small-Large isolated
## 1620 3 12 1009 2|14 low Small-Large isolated
## 1621 3 12 1009 2|14 low Small-Large isolated
## 1622 3 12 1009 2|14 low Small-Large isolated
## 1623 3 12 1009 2|14 low Small-Large isolated
## 1624 3 12 1009 2|14 low Small-Large isolated
## 1625 3 12 1009 2|14 low Small-Large isolated
## 1626 3 12 1009 2|14 low Small-Large isolated
## 1627 3 12 1009 2|14 low Small-Large isolated
## 1628 3 12 1009 2|14 low Small-Large isolated
## 1629 3 12 1009 2|14 low Small-Large isolated
## 1630 3 12 1009 2|14 low Small-Large isolated
## 1631 3 12 1009 2|14 low Small-Large isolated
## 1632 3 12 1009 2|14 low Small-Large isolated
## 1633 4 16 1009 2|14 low Small-Large isolated
## 1634 4 16 1009 2|14 low Small-Large isolated
## 1635 4 16 1009 2|14 low Small-Large isolated
## 1636 4 16 1009 2|14 low Small-Large isolated
## 1637 4 16 1009 2|14 low Small-Large isolated
## 1638 4 16 1009 2|14 low Small-Large isolated
## 1639 4 16 1009 2|14 low Small-Large isolated
## 1640 4 16 1009 2|14 low Small-Large isolated
## 1641 4 16 1009 2|14 low Small-Large isolated
## 1642 4 16 1009 2|14 low Small-Large isolated
## 1643 4 16 1009 2|14 low Small-Large isolated
## 1644 4 16 1009 2|14 low Small-Large isolated
## 1645 4 16 1009 2|14 low Small-Large isolated
## 1646 4 16 1009 2|14 low Small-Large isolated
## 1647 4 16 1009 2|14 low Small-Large isolated
## 1648 4 16 1009 2|14 low Small-Large isolated
## 1649 4 16 1009 2|14 low Small-Large isolated
## 1650 4 16 1009 2|14 low Small-Large isolated
## 1651 4 16 1009 2|14 low Small-Large isolated
## 1652 4 16 1009 2|14 low Small-Large isolated
## 1653 4 16 1009 2|14 low Small-Large isolated
## 1654 4 16 1009 2|14 low Small-Large isolated
## 1655 4 16 1009 2|14 low Small-Large isolated
## 1656 4 16 1009 2|14 low Small-Large isolated
## 1657 5 20 1009 2|14 low Small-Large isolated
## 1658 5 20 1009 2|14 low Small-Large isolated
## 1659 5 20 1009 2|14 low Small-Large isolated
## 1660 5 20 1009 2|14 low Small-Large isolated
## 1661 5 20 1009 2|14 low Small-Large isolated
## 1662 5 20 1009 2|14 low Small-Large isolated
## 1663 5 20 1009 2|14 low Small-Large isolated
## 1664 5 20 1009 2|14 low Small-Large isolated
## 1665 5 20 1009 2|14 low Small-Large isolated
## 1666 5 20 1009 2|14 low Small-Large isolated
## 1667 5 20 1009 2|14 low Small-Large isolated
## 1668 5 20 1009 2|14 low Small-Large isolated
## 1669 5 20 1009 2|14 low Small-Large isolated
## 1670 5 20 1009 2|14 low Small-Large isolated
## 1671 5 20 1009 2|14 low Small-Large isolated
## 1672 5 20 1009 2|14 low Small-Large isolated
## 1673 5 20 1009 2|14 low Small-Large isolated
## 1674 5 20 1009 2|14 low Small-Large isolated
## 1675 5 20 1009 2|14 low Small-Large isolated
## 1676 5 20 1009 2|14 low Small-Large isolated
## 1677 5 20 1009 2|14 low Small-Large isolated
## 1678 5 20 1009 2|14 low Small-Large isolated
## 1679 5 20 1009 2|14 low Small-Large isolated
## 1680 5 20 1009 2|14 low Small-Large isolated
## 1681 6 24 1009 2|14 low Small-Large isolated
## 1682 6 24 1009 2|14 low Small-Large isolated
## 1683 6 24 1009 2|14 low Small-Large isolated
## 1684 6 24 1009 2|14 low Small-Large isolated
## 1685 6 24 1009 2|14 low Small-Large isolated
## 1686 6 24 1009 2|14 low Small-Large isolated
## 1687 6 24 1009 2|14 low Small-Large isolated
## 1688 6 24 1009 2|14 low Small-Large isolated
## 1689 6 24 1009 2|14 low Small-Large isolated
## 1690 6 24 1009 2|14 low Small-Large isolated
## 1691 6 24 1009 2|14 low Small-Large isolated
## 1692 6 24 1009 2|14 low Small-Large isolated
## 1693 6 24 1009 2|14 low Small-Large isolated
## 1694 6 24 1009 2|14 low Small-Large isolated
## 1695 6 24 1009 2|14 low Small-Large isolated
## 1696 6 24 1009 2|14 low Small-Large isolated
## 1697 6 24 1009 2|14 low Small-Large isolated
## 1698 6 24 1009 2|14 low Small-Large isolated
## 1699 6 24 1009 2|14 low Small-Large isolated
## 1700 6 24 1009 2|14 low Small-Large isolated
## 1701 6 24 1009 2|14 low Small-Large isolated
## 1702 6 24 1009 2|14 low Small-Large isolated
## 1703 6 24 1009 2|14 low Small-Large isolated
## 1704 6 24 1009 2|14 low Small-Large isolated
## 1705 7 28 1009 2|14 low Small-Large isolated
## 1706 7 28 1009 2|14 low Small-Large isolated
## 1707 7 28 1009 2|14 low Small-Large isolated
## 1708 7 28 1009 2|14 low Small-Large isolated
## 1709 7 28 1009 2|14 low Small-Large isolated
## 1710 7 28 1009 2|14 low Small-Large isolated
## 1711 7 28 1009 2|14 low Small-Large isolated
## 1712 7 28 1009 2|14 low Small-Large isolated
## 1713 7 28 1009 2|14 low Small-Large isolated
## 1714 7 28 1009 2|14 low Small-Large isolated
## 1715 7 28 1009 2|14 low Small-Large isolated
## 1716 7 28 1009 2|14 low Small-Large isolated
## 1717 7 28 1009 2|14 low Small-Large isolated
## 1718 7 28 1009 2|14 low Small-Large isolated
## 1719 7 28 1009 2|14 low Small-Large isolated
## 1720 7 28 1009 2|14 low Small-Large isolated
## 1721 7 28 1009 2|14 low Small-Large isolated
## 1722 7 28 1009 2|14 low Small-Large isolated
## 1723 7 28 1009 2|14 low Small-Large isolated
## 1724 7 28 1009 2|14 low Small-Large isolated
## 1725 7 28 1009 2|14 low Small-Large isolated
## 1726 7 28 1009 2|14 low Small-Large isolated
## 1727 7 28 1009 2|14 low Small-Large isolated
## 1728 7 28 1009 2|14 low Small-Large isolated
## 1729 0 0 1010 2|15 low Small-Large isolated
## 1730 0 0 1010 2|15 low Small-Large isolated
## 1731 0 0 1010 2|15 low Small-Large isolated
## 1732 0 0 1010 2|15 low Small-Large isolated
## 1733 0 0 1010 2|15 low Small-Large isolated
## 1734 0 0 1010 2|15 low Small-Large isolated
## 1735 0 0 1010 2|15 low Small-Large isolated
## 1736 0 0 1010 2|15 low Small-Large isolated
## 1737 0 0 1010 2|15 low Small-Large isolated
## 1738 0 0 1010 2|15 low Small-Large isolated
## 1739 0 0 1010 2|15 low Small-Large isolated
## 1740 0 0 1010 2|15 low Small-Large isolated
## 1741 0 0 1010 2|15 low Small-Large isolated
## 1742 0 0 1010 2|15 low Small-Large isolated
## 1743 0 0 1010 2|15 low Small-Large isolated
## 1744 0 0 1010 2|15 low Small-Large isolated
## 1745 0 0 1010 2|15 low Small-Large isolated
## 1746 0 0 1010 2|15 low Small-Large isolated
## 1747 0 0 1010 2|15 low Small-Large isolated
## 1748 0 0 1010 2|15 low Small-Large isolated
## 1749 0 0 1010 2|15 low Small-Large isolated
## 1750 0 0 1010 2|15 low Small-Large isolated
## 1751 0 0 1010 2|15 low Small-Large isolated
## 1752 0 0 1010 2|15 low Small-Large isolated
## 1753 1 4 1010 2|15 low Small-Large isolated
## 1754 1 4 1010 2|15 low Small-Large isolated
## 1755 1 4 1010 2|15 low Small-Large isolated
## 1756 1 4 1010 2|15 low Small-Large isolated
## 1757 1 4 1010 2|15 low Small-Large isolated
## 1758 1 4 1010 2|15 low Small-Large isolated
## 1759 1 4 1010 2|15 low Small-Large isolated
## 1760 1 4 1010 2|15 low Small-Large isolated
## 1761 1 4 1010 2|15 low Small-Large isolated
## 1762 1 4 1010 2|15 low Small-Large isolated
## 1763 1 4 1010 2|15 low Small-Large isolated
## 1764 1 4 1010 2|15 low Small-Large isolated
## 1765 1 4 1010 2|15 low Small-Large isolated
## 1766 1 4 1010 2|15 low Small-Large isolated
## 1767 1 4 1010 2|15 low Small-Large isolated
## 1768 1 4 1010 2|15 low Small-Large isolated
## 1769 1 4 1010 2|15 low Small-Large isolated
## 1770 1 4 1010 2|15 low Small-Large isolated
## 1771 1 4 1010 2|15 low Small-Large isolated
## 1772 1 4 1010 2|15 low Small-Large isolated
## 1773 1 4 1010 2|15 low Small-Large isolated
## 1774 1 4 1010 2|15 low Small-Large isolated
## 1775 1 4 1010 2|15 low Small-Large isolated
## 1776 1 4 1010 2|15 low Small-Large isolated
## 1777 2 8 1010 2|15 low Small-Large isolated
## 1778 2 8 1010 2|15 low Small-Large isolated
## 1779 2 8 1010 2|15 low Small-Large isolated
## 1780 2 8 1010 2|15 low Small-Large isolated
## 1781 2 8 1010 2|15 low Small-Large isolated
## 1782 2 8 1010 2|15 low Small-Large isolated
## 1783 2 8 1010 2|15 low Small-Large isolated
## 1784 2 8 1010 2|15 low Small-Large isolated
## 1785 2 8 1010 2|15 low Small-Large isolated
## 1786 2 8 1010 2|15 low Small-Large isolated
## 1787 2 8 1010 2|15 low Small-Large isolated
## 1788 2 8 1010 2|15 low Small-Large isolated
## 1789 2 8 1010 2|15 low Small-Large isolated
## 1790 2 8 1010 2|15 low Small-Large isolated
## 1791 2 8 1010 2|15 low Small-Large isolated
## 1792 2 8 1010 2|15 low Small-Large isolated
## 1793 2 8 1010 2|15 low Small-Large isolated
## 1794 2 8 1010 2|15 low Small-Large isolated
## 1795 2 8 1010 2|15 low Small-Large isolated
## 1796 2 8 1010 2|15 low Small-Large isolated
## 1797 2 8 1010 2|15 low Small-Large isolated
## 1798 2 8 1010 2|15 low Small-Large isolated
## 1799 2 8 1010 2|15 low Small-Large isolated
## 1800 2 8 1010 2|15 low Small-Large isolated
## 1801 3 12 1010 2|15 low Small-Large isolated
## 1802 3 12 1010 2|15 low Small-Large isolated
## 1803 3 12 1010 2|15 low Small-Large isolated
## 1804 3 12 1010 2|15 low Small-Large isolated
## 1805 3 12 1010 2|15 low Small-Large isolated
## 1806 3 12 1010 2|15 low Small-Large isolated
## 1807 3 12 1010 2|15 low Small-Large isolated
## 1808 3 12 1010 2|15 low Small-Large isolated
## 1809 3 12 1010 2|15 low Small-Large isolated
## 1810 3 12 1010 2|15 low Small-Large isolated
## 1811 3 12 1010 2|15 low Small-Large isolated
## 1812 3 12 1010 2|15 low Small-Large isolated
## 1813 3 12 1010 2|15 low Small-Large isolated
## 1814 3 12 1010 2|15 low Small-Large isolated
## 1815 3 12 1010 2|15 low Small-Large isolated
## 1816 3 12 1010 2|15 low Small-Large isolated
## 1817 3 12 1010 2|15 low Small-Large isolated
## 1818 3 12 1010 2|15 low Small-Large isolated
## 1819 3 12 1010 2|15 low Small-Large isolated
## 1820 3 12 1010 2|15 low Small-Large isolated
## 1821 3 12 1010 2|15 low Small-Large isolated
## 1822 3 12 1010 2|15 low Small-Large isolated
## 1823 3 12 1010 2|15 low Small-Large isolated
## 1824 3 12 1010 2|15 low Small-Large isolated
## 1825 4 16 1010 2|15 low Small-Large isolated
## 1826 4 16 1010 2|15 low Small-Large isolated
## 1827 4 16 1010 2|15 low Small-Large isolated
## 1828 4 16 1010 2|15 low Small-Large isolated
## 1829 4 16 1010 2|15 low Small-Large isolated
## 1830 4 16 1010 2|15 low Small-Large isolated
## 1831 4 16 1010 2|15 low Small-Large isolated
## 1832 4 16 1010 2|15 low Small-Large isolated
## 1833 4 16 1010 2|15 low Small-Large isolated
## 1834 4 16 1010 2|15 low Small-Large isolated
## 1835 4 16 1010 2|15 low Small-Large isolated
## 1836 4 16 1010 2|15 low Small-Large isolated
## 1837 4 16 1010 2|15 low Small-Large isolated
## 1838 4 16 1010 2|15 low Small-Large isolated
## 1839 4 16 1010 2|15 low Small-Large isolated
## 1840 4 16 1010 2|15 low Small-Large isolated
## 1841 4 16 1010 2|15 low Small-Large isolated
## 1842 4 16 1010 2|15 low Small-Large isolated
## 1843 4 16 1010 2|15 low Small-Large isolated
## 1844 4 16 1010 2|15 low Small-Large isolated
## 1845 4 16 1010 2|15 low Small-Large isolated
## 1846 4 16 1010 2|15 low Small-Large isolated
## 1847 4 16 1010 2|15 low Small-Large isolated
## 1848 4 16 1010 2|15 low Small-Large isolated
## 1849 5 20 1010 2|15 low Small-Large isolated
## 1850 5 20 1010 2|15 low Small-Large isolated
## 1851 5 20 1010 2|15 low Small-Large isolated
## 1852 5 20 1010 2|15 low Small-Large isolated
## 1853 5 20 1010 2|15 low Small-Large isolated
## 1854 5 20 1010 2|15 low Small-Large isolated
## 1855 5 20 1010 2|15 low Small-Large isolated
## 1856 5 20 1010 2|15 low Small-Large isolated
## 1857 5 20 1010 2|15 low Small-Large isolated
## 1858 5 20 1010 2|15 low Small-Large isolated
## 1859 5 20 1010 2|15 low Small-Large isolated
## 1860 5 20 1010 2|15 low Small-Large isolated
## 1861 5 20 1010 2|15 low Small-Large isolated
## 1862 5 20 1010 2|15 low Small-Large isolated
## 1863 5 20 1010 2|15 low Small-Large isolated
## 1864 5 20 1010 2|15 low Small-Large isolated
## 1865 5 20 1010 2|15 low Small-Large isolated
## 1866 5 20 1010 2|15 low Small-Large isolated
## 1867 5 20 1010 2|15 low Small-Large isolated
## 1868 5 20 1010 2|15 low Small-Large isolated
## 1869 5 20 1010 2|15 low Small-Large isolated
## 1870 5 20 1010 2|15 low Small-Large isolated
## 1871 5 20 1010 2|15 low Small-Large isolated
## 1872 5 20 1010 2|15 low Small-Large isolated
## 1873 6 24 1010 2|15 low Small-Large isolated
## 1874 6 24 1010 2|15 low Small-Large isolated
## 1875 6 24 1010 2|15 low Small-Large isolated
## 1876 6 24 1010 2|15 low Small-Large isolated
## 1877 6 24 1010 2|15 low Small-Large isolated
## 1878 6 24 1010 2|15 low Small-Large isolated
## 1879 6 24 1010 2|15 low Small-Large isolated
## 1880 6 24 1010 2|15 low Small-Large isolated
## 1881 6 24 1010 2|15 low Small-Large isolated
## 1882 6 24 1010 2|15 low Small-Large isolated
## 1883 6 24 1010 2|15 low Small-Large isolated
## 1884 6 24 1010 2|15 low Small-Large isolated
## 1885 6 24 1010 2|15 low Small-Large isolated
## 1886 6 24 1010 2|15 low Small-Large isolated
## 1887 6 24 1010 2|15 low Small-Large isolated
## 1888 6 24 1010 2|15 low Small-Large isolated
## 1889 6 24 1010 2|15 low Small-Large isolated
## 1890 6 24 1010 2|15 low Small-Large isolated
## 1891 6 24 1010 2|15 low Small-Large isolated
## 1892 6 24 1010 2|15 low Small-Large isolated
## 1893 6 24 1010 2|15 low Small-Large isolated
## 1894 6 24 1010 2|15 low Small-Large isolated
## 1895 6 24 1010 2|15 low Small-Large isolated
## 1896 6 24 1010 2|15 low Small-Large isolated
## 1897 7 28 1010 2|15 low Small-Large isolated
## 1898 7 28 1010 2|15 low Small-Large isolated
## 1899 7 28 1010 2|15 low Small-Large isolated
## 1900 7 28 1010 2|15 low Small-Large isolated
## 1901 7 28 1010 2|15 low Small-Large isolated
## 1902 7 28 1010 2|15 low Small-Large isolated
## 1903 7 28 1010 2|15 low Small-Large isolated
## 1904 7 28 1010 2|15 low Small-Large isolated
## 1905 7 28 1010 2|15 low Small-Large isolated
## 1906 7 28 1010 2|15 low Small-Large isolated
## 1907 7 28 1010 2|15 low Small-Large isolated
## 1908 7 28 1010 2|15 low Small-Large isolated
## 1909 7 28 1010 2|15 low Small-Large isolated
## 1910 7 28 1010 2|15 low Small-Large isolated
## 1911 7 28 1010 2|15 low Small-Large isolated
## 1912 7 28 1010 2|15 low Small-Large isolated
## 1913 7 28 1010 2|15 low Small-Large isolated
## 1914 7 28 1010 2|15 low Small-Large isolated
## 1915 7 28 1010 2|15 low Small-Large isolated
## 1916 7 28 1010 2|15 low Small-Large isolated
## 1917 7 28 1010 2|15 low Small-Large isolated
## 1918 7 28 1010 2|15 low Small-Large isolated
## 1919 7 28 1010 2|15 low Small-Large isolated
## 1920 7 28 1010 2|15 low Small-Large isolated
## 1921 0 0 1011 3|11 low Small-Large isolated
## 1922 0 0 1011 3|11 low Small-Large isolated
## 1923 0 0 1011 3|11 low Small-Large isolated
## 1924 0 0 1011 3|11 low Small-Large isolated
## 1925 0 0 1011 3|11 low Small-Large isolated
## 1926 0 0 1011 3|11 low Small-Large isolated
## 1927 0 0 1011 3|11 low Small-Large isolated
## 1928 0 0 1011 3|11 low Small-Large isolated
## 1929 0 0 1011 3|11 low Small-Large isolated
## 1930 0 0 1011 3|11 low Small-Large isolated
## 1931 0 0 1011 3|11 low Small-Large isolated
## 1932 0 0 1011 3|11 low Small-Large isolated
## 1933 0 0 1011 3|11 low Small-Large isolated
## 1934 0 0 1011 3|11 low Small-Large isolated
## 1935 0 0 1011 3|11 low Small-Large isolated
## 1936 0 0 1011 3|11 low Small-Large isolated
## 1937 0 0 1011 3|11 low Small-Large isolated
## 1938 0 0 1011 3|11 low Small-Large isolated
## 1939 0 0 1011 3|11 low Small-Large isolated
## 1940 0 0 1011 3|11 low Small-Large isolated
## 1941 0 0 1011 3|11 low Small-Large isolated
## 1942 0 0 1011 3|11 low Small-Large isolated
## 1943 0 0 1011 3|11 low Small-Large isolated
## 1944 0 0 1011 3|11 low Small-Large isolated
## 1945 1 4 1011 3|11 low Small-Large isolated
## 1946 1 4 1011 3|11 low Small-Large isolated
## 1947 1 4 1011 3|11 low Small-Large isolated
## 1948 1 4 1011 3|11 low Small-Large isolated
## 1949 1 4 1011 3|11 low Small-Large isolated
## 1950 1 4 1011 3|11 low Small-Large isolated
## 1951 1 4 1011 3|11 low Small-Large isolated
## 1952 1 4 1011 3|11 low Small-Large isolated
## 1953 1 4 1011 3|11 low Small-Large isolated
## 1954 1 4 1011 3|11 low Small-Large isolated
## 1955 1 4 1011 3|11 low Small-Large isolated
## 1956 1 4 1011 3|11 low Small-Large isolated
## 1957 1 4 1011 3|11 low Small-Large isolated
## 1958 1 4 1011 3|11 low Small-Large isolated
## 1959 1 4 1011 3|11 low Small-Large isolated
## 1960 1 4 1011 3|11 low Small-Large isolated
## 1961 1 4 1011 3|11 low Small-Large isolated
## 1962 1 4 1011 3|11 low Small-Large isolated
## 1963 1 4 1011 3|11 low Small-Large isolated
## 1964 1 4 1011 3|11 low Small-Large isolated
## 1965 1 4 1011 3|11 low Small-Large isolated
## 1966 1 4 1011 3|11 low Small-Large isolated
## 1967 1 4 1011 3|11 low Small-Large isolated
## 1968 1 4 1011 3|11 low Small-Large isolated
## 1969 2 8 1011 3|11 low Small-Large isolated
## 1970 2 8 1011 3|11 low Small-Large isolated
## 1971 2 8 1011 3|11 low Small-Large isolated
## 1972 2 8 1011 3|11 low Small-Large isolated
## 1973 2 8 1011 3|11 low Small-Large isolated
## 1974 2 8 1011 3|11 low Small-Large isolated
## 1975 2 8 1011 3|11 low Small-Large isolated
## 1976 2 8 1011 3|11 low Small-Large isolated
## 1977 2 8 1011 3|11 low Small-Large isolated
## 1978 2 8 1011 3|11 low Small-Large isolated
## 1979 2 8 1011 3|11 low Small-Large isolated
## 1980 2 8 1011 3|11 low Small-Large isolated
## 1981 2 8 1011 3|11 low Small-Large isolated
## 1982 2 8 1011 3|11 low Small-Large isolated
## 1983 2 8 1011 3|11 low Small-Large isolated
## 1984 2 8 1011 3|11 low Small-Large isolated
## 1985 2 8 1011 3|11 low Small-Large isolated
## 1986 2 8 1011 3|11 low Small-Large isolated
## 1987 2 8 1011 3|11 low Small-Large isolated
## 1988 2 8 1011 3|11 low Small-Large isolated
## 1989 2 8 1011 3|11 low Small-Large isolated
## 1990 2 8 1011 3|11 low Small-Large isolated
## 1991 2 8 1011 3|11 low Small-Large isolated
## 1992 2 8 1011 3|11 low Small-Large isolated
## 1993 3 12 1011 3|11 low Small-Large isolated
## 1994 3 12 1011 3|11 low Small-Large isolated
## 1995 3 12 1011 3|11 low Small-Large isolated
## 1996 3 12 1011 3|11 low Small-Large isolated
## 1997 3 12 1011 3|11 low Small-Large isolated
## 1998 3 12 1011 3|11 low Small-Large isolated
## 1999 3 12 1011 3|11 low Small-Large isolated
## 2000 3 12 1011 3|11 low Small-Large isolated
## 2001 3 12 1011 3|11 low Small-Large isolated
## 2002 3 12 1011 3|11 low Small-Large isolated
## 2003 3 12 1011 3|11 low Small-Large isolated
## 2004 3 12 1011 3|11 low Small-Large isolated
## 2005 3 12 1011 3|11 low Small-Large isolated
## 2006 3 12 1011 3|11 low Small-Large isolated
## 2007 3 12 1011 3|11 low Small-Large isolated
## 2008 3 12 1011 3|11 low Small-Large isolated
## 2009 3 12 1011 3|11 low Small-Large isolated
## 2010 3 12 1011 3|11 low Small-Large isolated
## 2011 3 12 1011 3|11 low Small-Large isolated
## 2012 3 12 1011 3|11 low Small-Large isolated
## 2013 3 12 1011 3|11 low Small-Large isolated
## 2014 3 12 1011 3|11 low Small-Large isolated
## 2015 3 12 1011 3|11 low Small-Large isolated
## 2016 3 12 1011 3|11 low Small-Large isolated
## 2017 4 16 1011 3|11 low Small-Large isolated
## 2018 4 16 1011 3|11 low Small-Large isolated
## 2019 4 16 1011 3|11 low Small-Large isolated
## 2020 4 16 1011 3|11 low Small-Large isolated
## 2021 4 16 1011 3|11 low Small-Large isolated
## 2022 4 16 1011 3|11 low Small-Large isolated
## 2023 4 16 1011 3|11 low Small-Large isolated
## 2024 4 16 1011 3|11 low Small-Large isolated
## 2025 4 16 1011 3|11 low Small-Large isolated
## 2026 4 16 1011 3|11 low Small-Large isolated
## 2027 4 16 1011 3|11 low Small-Large isolated
## 2028 4 16 1011 3|11 low Small-Large isolated
## 2029 4 16 1011 3|11 low Small-Large isolated
## 2030 4 16 1011 3|11 low Small-Large isolated
## 2031 4 16 1011 3|11 low Small-Large isolated
## 2032 4 16 1011 3|11 low Small-Large isolated
## 2033 4 16 1011 3|11 low Small-Large isolated
## 2034 4 16 1011 3|11 low Small-Large isolated
## 2035 4 16 1011 3|11 low Small-Large isolated
## 2036 4 16 1011 3|11 low Small-Large isolated
## 2037 4 16 1011 3|11 low Small-Large isolated
## 2038 4 16 1011 3|11 low Small-Large isolated
## 2039 4 16 1011 3|11 low Small-Large isolated
## 2040 4 16 1011 3|11 low Small-Large isolated
## 2041 5 20 1011 3|11 low Small-Large isolated
## 2042 5 20 1011 3|11 low Small-Large isolated
## 2043 5 20 1011 3|11 low Small-Large isolated
## 2044 5 20 1011 3|11 low Small-Large isolated
## 2045 5 20 1011 3|11 low Small-Large isolated
## 2046 5 20 1011 3|11 low Small-Large isolated
## 2047 5 20 1011 3|11 low Small-Large isolated
## 2048 5 20 1011 3|11 low Small-Large isolated
## 2049 5 20 1011 3|11 low Small-Large isolated
## 2050 5 20 1011 3|11 low Small-Large isolated
## 2051 5 20 1011 3|11 low Small-Large isolated
## 2052 5 20 1011 3|11 low Small-Large isolated
## 2053 5 20 1011 3|11 low Small-Large isolated
## 2054 5 20 1011 3|11 low Small-Large isolated
## 2055 5 20 1011 3|11 low Small-Large isolated
## 2056 5 20 1011 3|11 low Small-Large isolated
## 2057 5 20 1011 3|11 low Small-Large isolated
## 2058 5 20 1011 3|11 low Small-Large isolated
## 2059 5 20 1011 3|11 low Small-Large isolated
## 2060 5 20 1011 3|11 low Small-Large isolated
## 2061 5 20 1011 3|11 low Small-Large isolated
## 2062 5 20 1011 3|11 low Small-Large isolated
## 2063 5 20 1011 3|11 low Small-Large isolated
## 2064 5 20 1011 3|11 low Small-Large isolated
## 2065 6 24 1011 3|11 low Small-Large isolated
## 2066 6 24 1011 3|11 low Small-Large isolated
## 2067 6 24 1011 3|11 low Small-Large isolated
## 2068 6 24 1011 3|11 low Small-Large isolated
## 2069 6 24 1011 3|11 low Small-Large isolated
## 2070 6 24 1011 3|11 low Small-Large isolated
## 2071 6 24 1011 3|11 low Small-Large isolated
## 2072 6 24 1011 3|11 low Small-Large isolated
## 2073 6 24 1011 3|11 low Small-Large isolated
## 2074 6 24 1011 3|11 low Small-Large isolated
## 2075 6 24 1011 3|11 low Small-Large isolated
## 2076 6 24 1011 3|11 low Small-Large isolated
## 2077 6 24 1011 3|11 low Small-Large isolated
## 2078 6 24 1011 3|11 low Small-Large isolated
## 2079 6 24 1011 3|11 low Small-Large isolated
## 2080 6 24 1011 3|11 low Small-Large isolated
## 2081 6 24 1011 3|11 low Small-Large isolated
## 2082 6 24 1011 3|11 low Small-Large isolated
## 2083 6 24 1011 3|11 low Small-Large isolated
## 2084 6 24 1011 3|11 low Small-Large isolated
## 2085 6 24 1011 3|11 low Small-Large isolated
## 2086 6 24 1011 3|11 low Small-Large isolated
## 2087 6 24 1011 3|11 low Small-Large isolated
## 2088 6 24 1011 3|11 low Small-Large isolated
## 2089 7 28 1011 3|11 low Small-Large isolated
## 2090 7 28 1011 3|11 low Small-Large isolated
## 2091 7 28 1011 3|11 low Small-Large isolated
## 2092 7 28 1011 3|11 low Small-Large isolated
## 2093 7 28 1011 3|11 low Small-Large isolated
## 2094 7 28 1011 3|11 low Small-Large isolated
## 2095 7 28 1011 3|11 low Small-Large isolated
## 2096 7 28 1011 3|11 low Small-Large isolated
## 2097 7 28 1011 3|11 low Small-Large isolated
## 2098 7 28 1011 3|11 low Small-Large isolated
## 2099 7 28 1011 3|11 low Small-Large isolated
## 2100 7 28 1011 3|11 low Small-Large isolated
## 2101 7 28 1011 3|11 low Small-Large isolated
## 2102 7 28 1011 3|11 low Small-Large isolated
## 2103 7 28 1011 3|11 low Small-Large isolated
## 2104 7 28 1011 3|11 low Small-Large isolated
## 2105 7 28 1011 3|11 low Small-Large isolated
## 2106 7 28 1011 3|11 low Small-Large isolated
## 2107 7 28 1011 3|11 low Small-Large isolated
## 2108 7 28 1011 3|11 low Small-Large isolated
## 2109 7 28 1011 3|11 low Small-Large isolated
## 2110 7 28 1011 3|11 low Small-Large isolated
## 2111 7 28 1011 3|11 low Small-Large isolated
## 2112 7 28 1011 3|11 low Small-Large isolated
## 2113 0 0 1012 3|12 low Small-Large isolated
## 2114 0 0 1012 3|12 low Small-Large isolated
## 2115 0 0 1012 3|12 low Small-Large isolated
## 2116 0 0 1012 3|12 low Small-Large isolated
## 2117 0 0 1012 3|12 low Small-Large isolated
## 2118 0 0 1012 3|12 low Small-Large isolated
## 2119 0 0 1012 3|12 low Small-Large isolated
## 2120 0 0 1012 3|12 low Small-Large isolated
## 2121 0 0 1012 3|12 low Small-Large isolated
## 2122 0 0 1012 3|12 low Small-Large isolated
## 2123 0 0 1012 3|12 low Small-Large isolated
## 2124 0 0 1012 3|12 low Small-Large isolated
## 2125 0 0 1012 3|12 low Small-Large isolated
## 2126 0 0 1012 3|12 low Small-Large isolated
## 2127 0 0 1012 3|12 low Small-Large isolated
## 2128 0 0 1012 3|12 low Small-Large isolated
## 2129 0 0 1012 3|12 low Small-Large isolated
## 2130 0 0 1012 3|12 low Small-Large isolated
## 2131 0 0 1012 3|12 low Small-Large isolated
## 2132 0 0 1012 3|12 low Small-Large isolated
## 2133 0 0 1012 3|12 low Small-Large isolated
## 2134 0 0 1012 3|12 low Small-Large isolated
## 2135 0 0 1012 3|12 low Small-Large isolated
## 2136 0 0 1012 3|12 low Small-Large isolated
## 2137 1 4 1012 3|12 low Small-Large isolated
## 2138 1 4 1012 3|12 low Small-Large isolated
## 2139 1 4 1012 3|12 low Small-Large isolated
## 2140 1 4 1012 3|12 low Small-Large isolated
## 2141 1 4 1012 3|12 low Small-Large isolated
## 2142 1 4 1012 3|12 low Small-Large isolated
## 2143 1 4 1012 3|12 low Small-Large isolated
## 2144 1 4 1012 3|12 low Small-Large isolated
## 2145 1 4 1012 3|12 low Small-Large isolated
## 2146 1 4 1012 3|12 low Small-Large isolated
## 2147 1 4 1012 3|12 low Small-Large isolated
## 2148 1 4 1012 3|12 low Small-Large isolated
## 2149 1 4 1012 3|12 low Small-Large isolated
## 2150 1 4 1012 3|12 low Small-Large isolated
## 2151 1 4 1012 3|12 low Small-Large isolated
## 2152 1 4 1012 3|12 low Small-Large isolated
## 2153 1 4 1012 3|12 low Small-Large isolated
## 2154 1 4 1012 3|12 low Small-Large isolated
## 2155 1 4 1012 3|12 low Small-Large isolated
## 2156 1 4 1012 3|12 low Small-Large isolated
## 2157 1 4 1012 3|12 low Small-Large isolated
## 2158 1 4 1012 3|12 low Small-Large isolated
## 2159 1 4 1012 3|12 low Small-Large isolated
## 2160 1 4 1012 3|12 low Small-Large isolated
## 2161 2 8 1012 3|12 low Small-Large isolated
## 2162 2 8 1012 3|12 low Small-Large isolated
## 2163 2 8 1012 3|12 low Small-Large isolated
## 2164 2 8 1012 3|12 low Small-Large isolated
## 2165 2 8 1012 3|12 low Small-Large isolated
## 2166 2 8 1012 3|12 low Small-Large isolated
## 2167 2 8 1012 3|12 low Small-Large isolated
## 2168 2 8 1012 3|12 low Small-Large isolated
## 2169 2 8 1012 3|12 low Small-Large isolated
## 2170 2 8 1012 3|12 low Small-Large isolated
## 2171 2 8 1012 3|12 low Small-Large isolated
## 2172 2 8 1012 3|12 low Small-Large isolated
## 2173 2 8 1012 3|12 low Small-Large isolated
## 2174 2 8 1012 3|12 low Small-Large isolated
## 2175 2 8 1012 3|12 low Small-Large isolated
## 2176 2 8 1012 3|12 low Small-Large isolated
## 2177 2 8 1012 3|12 low Small-Large isolated
## 2178 2 8 1012 3|12 low Small-Large isolated
## 2179 2 8 1012 3|12 low Small-Large isolated
## 2180 2 8 1012 3|12 low Small-Large isolated
## 2181 2 8 1012 3|12 low Small-Large isolated
## 2182 2 8 1012 3|12 low Small-Large isolated
## 2183 2 8 1012 3|12 low Small-Large isolated
## 2184 2 8 1012 3|12 low Small-Large isolated
## 2185 3 12 1012 3|12 low Small-Large isolated
## 2186 3 12 1012 3|12 low Small-Large isolated
## 2187 3 12 1012 3|12 low Small-Large isolated
## 2188 3 12 1012 3|12 low Small-Large isolated
## 2189 3 12 1012 3|12 low Small-Large isolated
## 2190 3 12 1012 3|12 low Small-Large isolated
## 2191 3 12 1012 3|12 low Small-Large isolated
## 2192 3 12 1012 3|12 low Small-Large isolated
## 2193 3 12 1012 3|12 low Small-Large isolated
## 2194 3 12 1012 3|12 low Small-Large isolated
## 2195 3 12 1012 3|12 low Small-Large isolated
## 2196 3 12 1012 3|12 low Small-Large isolated
## 2197 3 12 1012 3|12 low Small-Large isolated
## 2198 3 12 1012 3|12 low Small-Large isolated
## 2199 3 12 1012 3|12 low Small-Large isolated
## 2200 3 12 1012 3|12 low Small-Large isolated
## 2201 3 12 1012 3|12 low Small-Large isolated
## 2202 3 12 1012 3|12 low Small-Large isolated
## 2203 3 12 1012 3|12 low Small-Large isolated
## 2204 3 12 1012 3|12 low Small-Large isolated
## 2205 3 12 1012 3|12 low Small-Large isolated
## 2206 3 12 1012 3|12 low Small-Large isolated
## 2207 3 12 1012 3|12 low Small-Large isolated
## 2208 3 12 1012 3|12 low Small-Large isolated
## 2209 4 16 1012 3|12 low Small-Large isolated
## 2210 4 16 1012 3|12 low Small-Large isolated
## 2211 4 16 1012 3|12 low Small-Large isolated
## 2212 4 16 1012 3|12 low Small-Large isolated
## 2213 4 16 1012 3|12 low Small-Large isolated
## 2214 4 16 1012 3|12 low Small-Large isolated
## 2215 4 16 1012 3|12 low Small-Large isolated
## 2216 4 16 1012 3|12 low Small-Large isolated
## 2217 4 16 1012 3|12 low Small-Large isolated
## 2218 4 16 1012 3|12 low Small-Large isolated
## 2219 4 16 1012 3|12 low Small-Large isolated
## 2220 4 16 1012 3|12 low Small-Large isolated
## 2221 4 16 1012 3|12 low Small-Large isolated
## 2222 4 16 1012 3|12 low Small-Large isolated
## 2223 4 16 1012 3|12 low Small-Large isolated
## 2224 4 16 1012 3|12 low Small-Large isolated
## 2225 4 16 1012 3|12 low Small-Large isolated
## 2226 4 16 1012 3|12 low Small-Large isolated
## 2227 4 16 1012 3|12 low Small-Large isolated
## 2228 4 16 1012 3|12 low Small-Large isolated
## 2229 4 16 1012 3|12 low Small-Large isolated
## 2230 4 16 1012 3|12 low Small-Large isolated
## 2231 4 16 1012 3|12 low Small-Large isolated
## 2232 4 16 1012 3|12 low Small-Large isolated
## 2233 5 20 1012 3|12 low Small-Large isolated
## 2234 5 20 1012 3|12 low Small-Large isolated
## 2235 5 20 1012 3|12 low Small-Large isolated
## 2236 5 20 1012 3|12 low Small-Large isolated
## 2237 5 20 1012 3|12 low Small-Large isolated
## 2238 5 20 1012 3|12 low Small-Large isolated
## 2239 5 20 1012 3|12 low Small-Large isolated
## 2240 5 20 1012 3|12 low Small-Large isolated
## 2241 5 20 1012 3|12 low Small-Large isolated
## 2242 5 20 1012 3|12 low Small-Large isolated
## 2243 5 20 1012 3|12 low Small-Large isolated
## 2244 5 20 1012 3|12 low Small-Large isolated
## 2245 5 20 1012 3|12 low Small-Large isolated
## 2246 5 20 1012 3|12 low Small-Large isolated
## 2247 5 20 1012 3|12 low Small-Large isolated
## 2248 5 20 1012 3|12 low Small-Large isolated
## 2249 5 20 1012 3|12 low Small-Large isolated
## 2250 5 20 1012 3|12 low Small-Large isolated
## 2251 5 20 1012 3|12 low Small-Large isolated
## 2252 5 20 1012 3|12 low Small-Large isolated
## 2253 5 20 1012 3|12 low Small-Large isolated
## 2254 5 20 1012 3|12 low Small-Large isolated
## 2255 5 20 1012 3|12 low Small-Large isolated
## 2256 5 20 1012 3|12 low Small-Large isolated
## 2257 6 24 1012 3|12 low Small-Large isolated
## 2258 6 24 1012 3|12 low Small-Large isolated
## 2259 6 24 1012 3|12 low Small-Large isolated
## 2260 6 24 1012 3|12 low Small-Large isolated
## 2261 6 24 1012 3|12 low Small-Large isolated
## 2262 6 24 1012 3|12 low Small-Large isolated
## 2263 6 24 1012 3|12 low Small-Large isolated
## 2264 6 24 1012 3|12 low Small-Large isolated
## 2265 6 24 1012 3|12 low Small-Large isolated
## 2266 6 24 1012 3|12 low Small-Large isolated
## 2267 6 24 1012 3|12 low Small-Large isolated
## 2268 6 24 1012 3|12 low Small-Large isolated
## 2269 6 24 1012 3|12 low Small-Large isolated
## 2270 6 24 1012 3|12 low Small-Large isolated
## 2271 6 24 1012 3|12 low Small-Large isolated
## 2272 6 24 1012 3|12 low Small-Large isolated
## 2273 6 24 1012 3|12 low Small-Large isolated
## 2274 6 24 1012 3|12 low Small-Large isolated
## 2275 6 24 1012 3|12 low Small-Large isolated
## 2276 6 24 1012 3|12 low Small-Large isolated
## 2277 6 24 1012 3|12 low Small-Large isolated
## 2278 6 24 1012 3|12 low Small-Large isolated
## 2279 6 24 1012 3|12 low Small-Large isolated
## 2280 6 24 1012 3|12 low Small-Large isolated
## 2281 7 28 1012 3|12 low Small-Large isolated
## 2282 7 28 1012 3|12 low Small-Large isolated
## 2283 7 28 1012 3|12 low Small-Large isolated
## 2284 7 28 1012 3|12 low Small-Large isolated
## 2285 7 28 1012 3|12 low Small-Large isolated
## 2286 7 28 1012 3|12 low Small-Large isolated
## 2287 7 28 1012 3|12 low Small-Large isolated
## 2288 7 28 1012 3|12 low Small-Large isolated
## 2289 7 28 1012 3|12 low Small-Large isolated
## 2290 7 28 1012 3|12 low Small-Large isolated
## 2291 7 28 1012 3|12 low Small-Large isolated
## 2292 7 28 1012 3|12 low Small-Large isolated
## 2293 7 28 1012 3|12 low Small-Large isolated
## 2294 7 28 1012 3|12 low Small-Large isolated
## 2295 7 28 1012 3|12 low Small-Large isolated
## 2296 7 28 1012 3|12 low Small-Large isolated
## 2297 7 28 1012 3|12 low Small-Large isolated
## 2298 7 28 1012 3|12 low Small-Large isolated
## 2299 7 28 1012 3|12 low Small-Large isolated
## 2300 7 28 1012 3|12 low Small-Large isolated
## 2301 7 28 1012 3|12 low Small-Large isolated
## 2302 7 28 1012 3|12 low Small-Large isolated
## 2303 7 28 1012 3|12 low Small-Large isolated
## 2304 7 28 1012 3|12 low Small-Large isolated
## 2305 0 0 1013 3|13 low Small-Large isolated
## 2306 0 0 1013 3|13 low Small-Large isolated
## 2307 0 0 1013 3|13 low Small-Large isolated
## 2308 0 0 1013 3|13 low Small-Large isolated
## 2309 0 0 1013 3|13 low Small-Large isolated
## 2310 0 0 1013 3|13 low Small-Large isolated
## 2311 0 0 1013 3|13 low Small-Large isolated
## 2312 0 0 1013 3|13 low Small-Large isolated
## 2313 0 0 1013 3|13 low Small-Large isolated
## 2314 0 0 1013 3|13 low Small-Large isolated
## 2315 0 0 1013 3|13 low Small-Large isolated
## 2316 0 0 1013 3|13 low Small-Large isolated
## 2317 0 0 1013 3|13 low Small-Large isolated
## 2318 0 0 1013 3|13 low Small-Large isolated
## 2319 0 0 1013 3|13 low Small-Large isolated
## 2320 0 0 1013 3|13 low Small-Large isolated
## 2321 0 0 1013 3|13 low Small-Large isolated
## 2322 0 0 1013 3|13 low Small-Large isolated
## 2323 0 0 1013 3|13 low Small-Large isolated
## 2324 0 0 1013 3|13 low Small-Large isolated
## 2325 0 0 1013 3|13 low Small-Large isolated
## 2326 0 0 1013 3|13 low Small-Large isolated
## 2327 0 0 1013 3|13 low Small-Large isolated
## 2328 0 0 1013 3|13 low Small-Large isolated
## 2329 1 4 1013 3|13 low Small-Large isolated
## 2330 1 4 1013 3|13 low Small-Large isolated
## 2331 1 4 1013 3|13 low Small-Large isolated
## 2332 1 4 1013 3|13 low Small-Large isolated
## 2333 1 4 1013 3|13 low Small-Large isolated
## 2334 1 4 1013 3|13 low Small-Large isolated
## 2335 1 4 1013 3|13 low Small-Large isolated
## 2336 1 4 1013 3|13 low Small-Large isolated
## 2337 1 4 1013 3|13 low Small-Large isolated
## 2338 1 4 1013 3|13 low Small-Large isolated
## 2339 1 4 1013 3|13 low Small-Large isolated
## 2340 1 4 1013 3|13 low Small-Large isolated
## 2341 1 4 1013 3|13 low Small-Large isolated
## 2342 1 4 1013 3|13 low Small-Large isolated
## 2343 1 4 1013 3|13 low Small-Large isolated
## 2344 1 4 1013 3|13 low Small-Large isolated
## 2345 1 4 1013 3|13 low Small-Large isolated
## 2346 1 4 1013 3|13 low Small-Large isolated
## 2347 1 4 1013 3|13 low Small-Large isolated
## 2348 1 4 1013 3|13 low Small-Large isolated
## 2349 1 4 1013 3|13 low Small-Large isolated
## 2350 1 4 1013 3|13 low Small-Large isolated
## 2351 1 4 1013 3|13 low Small-Large isolated
## 2352 1 4 1013 3|13 low Small-Large isolated
## 2353 2 8 1013 3|13 low Small-Large isolated
## 2354 2 8 1013 3|13 low Small-Large isolated
## 2355 2 8 1013 3|13 low Small-Large isolated
## 2356 2 8 1013 3|13 low Small-Large isolated
## 2357 2 8 1013 3|13 low Small-Large isolated
## 2358 2 8 1013 3|13 low Small-Large isolated
## 2359 2 8 1013 3|13 low Small-Large isolated
## 2360 2 8 1013 3|13 low Small-Large isolated
## 2361 2 8 1013 3|13 low Small-Large isolated
## 2362 2 8 1013 3|13 low Small-Large isolated
## 2363 2 8 1013 3|13 low Small-Large isolated
## 2364 2 8 1013 3|13 low Small-Large isolated
## 2365 2 8 1013 3|13 low Small-Large isolated
## 2366 2 8 1013 3|13 low Small-Large isolated
## 2367 2 8 1013 3|13 low Small-Large isolated
## 2368 2 8 1013 3|13 low Small-Large isolated
## 2369 2 8 1013 3|13 low Small-Large isolated
## 2370 2 8 1013 3|13 low Small-Large isolated
## 2371 2 8 1013 3|13 low Small-Large isolated
## 2372 2 8 1013 3|13 low Small-Large isolated
## 2373 2 8 1013 3|13 low Small-Large isolated
## 2374 2 8 1013 3|13 low Small-Large isolated
## 2375 2 8 1013 3|13 low Small-Large isolated
## 2376 2 8 1013 3|13 low Small-Large isolated
## 2377 3 12 1013 3|13 low Small-Large isolated
## 2378 3 12 1013 3|13 low Small-Large isolated
## 2379 3 12 1013 3|13 low Small-Large isolated
## 2380 3 12 1013 3|13 low Small-Large isolated
## 2381 3 12 1013 3|13 low Small-Large isolated
## 2382 3 12 1013 3|13 low Small-Large isolated
## 2383 3 12 1013 3|13 low Small-Large isolated
## 2384 3 12 1013 3|13 low Small-Large isolated
## 2385 3 12 1013 3|13 low Small-Large isolated
## 2386 3 12 1013 3|13 low Small-Large isolated
## 2387 3 12 1013 3|13 low Small-Large isolated
## 2388 3 12 1013 3|13 low Small-Large isolated
## 2389 3 12 1013 3|13 low Small-Large isolated
## 2390 3 12 1013 3|13 low Small-Large isolated
## 2391 3 12 1013 3|13 low Small-Large isolated
## 2392 3 12 1013 3|13 low Small-Large isolated
## 2393 3 12 1013 3|13 low Small-Large isolated
## 2394 3 12 1013 3|13 low Small-Large isolated
## 2395 3 12 1013 3|13 low Small-Large isolated
## 2396 3 12 1013 3|13 low Small-Large isolated
## 2397 3 12 1013 3|13 low Small-Large isolated
## 2398 3 12 1013 3|13 low Small-Large isolated
## 2399 3 12 1013 3|13 low Small-Large isolated
## 2400 3 12 1013 3|13 low Small-Large isolated
## 2401 4 16 1013 3|13 low Small-Large isolated
## 2402 4 16 1013 3|13 low Small-Large isolated
## 2403 4 16 1013 3|13 low Small-Large isolated
## 2404 4 16 1013 3|13 low Small-Large isolated
## 2405 4 16 1013 3|13 low Small-Large isolated
## 2406 4 16 1013 3|13 low Small-Large isolated
## 2407 4 16 1013 3|13 low Small-Large isolated
## 2408 4 16 1013 3|13 low Small-Large isolated
## 2409 4 16 1013 3|13 low Small-Large isolated
## 2410 4 16 1013 3|13 low Small-Large isolated
## 2411 4 16 1013 3|13 low Small-Large isolated
## 2412 4 16 1013 3|13 low Small-Large isolated
## 2413 4 16 1013 3|13 low Small-Large isolated
## 2414 4 16 1013 3|13 low Small-Large isolated
## 2415 4 16 1013 3|13 low Small-Large isolated
## 2416 4 16 1013 3|13 low Small-Large isolated
## 2417 4 16 1013 3|13 low Small-Large isolated
## 2418 4 16 1013 3|13 low Small-Large isolated
## 2419 4 16 1013 3|13 low Small-Large isolated
## 2420 4 16 1013 3|13 low Small-Large isolated
## 2421 4 16 1013 3|13 low Small-Large isolated
## 2422 4 16 1013 3|13 low Small-Large isolated
## 2423 4 16 1013 3|13 low Small-Large isolated
## 2424 4 16 1013 3|13 low Small-Large isolated
## 2425 5 20 1013 3|13 low Small-Large isolated
## 2426 5 20 1013 3|13 low Small-Large isolated
## 2427 5 20 1013 3|13 low Small-Large isolated
## 2428 5 20 1013 3|13 low Small-Large isolated
## 2429 5 20 1013 3|13 low Small-Large isolated
## 2430 5 20 1013 3|13 low Small-Large isolated
## 2431 5 20 1013 3|13 low Small-Large isolated
## 2432 5 20 1013 3|13 low Small-Large isolated
## 2433 5 20 1013 3|13 low Small-Large isolated
## 2434 5 20 1013 3|13 low Small-Large isolated
## 2435 5 20 1013 3|13 low Small-Large isolated
## 2436 5 20 1013 3|13 low Small-Large isolated
## 2437 5 20 1013 3|13 low Small-Large isolated
## 2438 5 20 1013 3|13 low Small-Large isolated
## 2439 5 20 1013 3|13 low Small-Large isolated
## 2440 5 20 1013 3|13 low Small-Large isolated
## 2441 5 20 1013 3|13 low Small-Large isolated
## 2442 5 20 1013 3|13 low Small-Large isolated
## 2443 5 20 1013 3|13 low Small-Large isolated
## 2444 5 20 1013 3|13 low Small-Large isolated
## 2445 5 20 1013 3|13 low Small-Large isolated
## 2446 5 20 1013 3|13 low Small-Large isolated
## 2447 5 20 1013 3|13 low Small-Large isolated
## 2448 5 20 1013 3|13 low Small-Large isolated
## 2449 6 24 1013 3|13 low Small-Large isolated
## 2450 6 24 1013 3|13 low Small-Large isolated
## 2451 6 24 1013 3|13 low Small-Large isolated
## 2452 6 24 1013 3|13 low Small-Large isolated
## 2453 6 24 1013 3|13 low Small-Large isolated
## 2454 6 24 1013 3|13 low Small-Large isolated
## 2455 6 24 1013 3|13 low Small-Large isolated
## 2456 6 24 1013 3|13 low Small-Large isolated
## 2457 6 24 1013 3|13 low Small-Large isolated
## 2458 6 24 1013 3|13 low Small-Large isolated
## 2459 6 24 1013 3|13 low Small-Large isolated
## 2460 6 24 1013 3|13 low Small-Large isolated
## 2461 6 24 1013 3|13 low Small-Large isolated
## 2462 6 24 1013 3|13 low Small-Large isolated
## 2463 6 24 1013 3|13 low Small-Large isolated
## 2464 6 24 1013 3|13 low Small-Large isolated
## 2465 6 24 1013 3|13 low Small-Large isolated
## 2466 6 24 1013 3|13 low Small-Large isolated
## 2467 6 24 1013 3|13 low Small-Large isolated
## 2468 6 24 1013 3|13 low Small-Large isolated
## 2469 6 24 1013 3|13 low Small-Large isolated
## 2470 6 24 1013 3|13 low Small-Large isolated
## 2471 6 24 1013 3|13 low Small-Large isolated
## 2472 6 24 1013 3|13 low Small-Large isolated
## 2473 7 28 1013 3|13 low Small-Large isolated
## 2474 7 28 1013 3|13 low Small-Large isolated
## 2475 7 28 1013 3|13 low Small-Large isolated
## 2476 7 28 1013 3|13 low Small-Large isolated
## 2477 7 28 1013 3|13 low Small-Large isolated
## 2478 7 28 1013 3|13 low Small-Large isolated
## 2479 7 28 1013 3|13 low Small-Large isolated
## 2480 7 28 1013 3|13 low Small-Large isolated
## 2481 7 28 1013 3|13 low Small-Large isolated
## 2482 7 28 1013 3|13 low Small-Large isolated
## 2483 7 28 1013 3|13 low Small-Large isolated
## 2484 7 28 1013 3|13 low Small-Large isolated
## 2485 7 28 1013 3|13 low Small-Large isolated
## 2486 7 28 1013 3|13 low Small-Large isolated
## 2487 7 28 1013 3|13 low Small-Large isolated
## 2488 7 28 1013 3|13 low Small-Large isolated
## 2489 7 28 1013 3|13 low Small-Large isolated
## 2490 7 28 1013 3|13 low Small-Large isolated
## 2491 7 28 1013 3|13 low Small-Large isolated
## 2492 7 28 1013 3|13 low Small-Large isolated
## 2493 7 28 1013 3|13 low Small-Large isolated
## 2494 7 28 1013 3|13 low Small-Large isolated
## 2495 7 28 1013 3|13 low Small-Large isolated
## 2496 7 28 1013 3|13 low Small-Large isolated
## 2497 0 0 1014 3|14 low Small-Large isolated
## 2498 0 0 1014 3|14 low Small-Large isolated
## 2499 0 0 1014 3|14 low Small-Large isolated
## 2500 0 0 1014 3|14 low Small-Large isolated
## 2501 0 0 1014 3|14 low Small-Large isolated
## 2502 0 0 1014 3|14 low Small-Large isolated
## 2503 0 0 1014 3|14 low Small-Large isolated
## 2504 0 0 1014 3|14 low Small-Large isolated
## 2505 0 0 1014 3|14 low Small-Large isolated
## 2506 0 0 1014 3|14 low Small-Large isolated
## 2507 0 0 1014 3|14 low Small-Large isolated
## 2508 0 0 1014 3|14 low Small-Large isolated
## 2509 0 0 1014 3|14 low Small-Large isolated
## 2510 0 0 1014 3|14 low Small-Large isolated
## 2511 0 0 1014 3|14 low Small-Large isolated
## 2512 0 0 1014 3|14 low Small-Large isolated
## 2513 0 0 1014 3|14 low Small-Large isolated
## 2514 0 0 1014 3|14 low Small-Large isolated
## 2515 0 0 1014 3|14 low Small-Large isolated
## 2516 0 0 1014 3|14 low Small-Large isolated
## 2517 0 0 1014 3|14 low Small-Large isolated
## 2518 0 0 1014 3|14 low Small-Large isolated
## 2519 0 0 1014 3|14 low Small-Large isolated
## 2520 0 0 1014 3|14 low Small-Large isolated
## 2521 1 4 1014 3|14 low Small-Large isolated
## 2522 1 4 1014 3|14 low Small-Large isolated
## 2523 1 4 1014 3|14 low Small-Large isolated
## 2524 1 4 1014 3|14 low Small-Large isolated
## 2525 1 4 1014 3|14 low Small-Large isolated
## 2526 1 4 1014 3|14 low Small-Large isolated
## 2527 1 4 1014 3|14 low Small-Large isolated
## 2528 1 4 1014 3|14 low Small-Large isolated
## 2529 1 4 1014 3|14 low Small-Large isolated
## 2530 1 4 1014 3|14 low Small-Large isolated
## 2531 1 4 1014 3|14 low Small-Large isolated
## 2532 1 4 1014 3|14 low Small-Large isolated
## 2533 1 4 1014 3|14 low Small-Large isolated
## 2534 1 4 1014 3|14 low Small-Large isolated
## 2535 1 4 1014 3|14 low Small-Large isolated
## 2536 1 4 1014 3|14 low Small-Large isolated
## 2537 1 4 1014 3|14 low Small-Large isolated
## 2538 1 4 1014 3|14 low Small-Large isolated
## 2539 1 4 1014 3|14 low Small-Large isolated
## 2540 1 4 1014 3|14 low Small-Large isolated
## 2541 1 4 1014 3|14 low Small-Large isolated
## 2542 1 4 1014 3|14 low Small-Large isolated
## 2543 1 4 1014 3|14 low Small-Large isolated
## 2544 1 4 1014 3|14 low Small-Large isolated
## 2545 2 8 1014 3|14 low Small-Large isolated
## 2546 2 8 1014 3|14 low Small-Large isolated
## 2547 2 8 1014 3|14 low Small-Large isolated
## 2548 2 8 1014 3|14 low Small-Large isolated
## 2549 2 8 1014 3|14 low Small-Large isolated
## 2550 2 8 1014 3|14 low Small-Large isolated
## 2551 2 8 1014 3|14 low Small-Large isolated
## 2552 2 8 1014 3|14 low Small-Large isolated
## 2553 2 8 1014 3|14 low Small-Large isolated
## 2554 2 8 1014 3|14 low Small-Large isolated
## 2555 2 8 1014 3|14 low Small-Large isolated
## 2556 2 8 1014 3|14 low Small-Large isolated
## 2557 2 8 1014 3|14 low Small-Large isolated
## 2558 2 8 1014 3|14 low Small-Large isolated
## 2559 2 8 1014 3|14 low Small-Large isolated
## 2560 2 8 1014 3|14 low Small-Large isolated
## 2561 2 8 1014 3|14 low Small-Large isolated
## 2562 2 8 1014 3|14 low Small-Large isolated
## 2563 2 8 1014 3|14 low Small-Large isolated
## 2564 2 8 1014 3|14 low Small-Large isolated
## 2565 2 8 1014 3|14 low Small-Large isolated
## 2566 2 8 1014 3|14 low Small-Large isolated
## 2567 2 8 1014 3|14 low Small-Large isolated
## 2568 2 8 1014 3|14 low Small-Large isolated
## 2569 3 12 1014 3|14 low Small-Large isolated
## 2570 3 12 1014 3|14 low Small-Large isolated
## 2571 3 12 1014 3|14 low Small-Large isolated
## 2572 3 12 1014 3|14 low Small-Large isolated
## 2573 3 12 1014 3|14 low Small-Large isolated
## 2574 3 12 1014 3|14 low Small-Large isolated
## 2575 3 12 1014 3|14 low Small-Large isolated
## 2576 3 12 1014 3|14 low Small-Large isolated
## 2577 3 12 1014 3|14 low Small-Large isolated
## 2578 3 12 1014 3|14 low Small-Large isolated
## 2579 3 12 1014 3|14 low Small-Large isolated
## 2580 3 12 1014 3|14 low Small-Large isolated
## 2581 3 12 1014 3|14 low Small-Large isolated
## 2582 3 12 1014 3|14 low Small-Large isolated
## 2583 3 12 1014 3|14 low Small-Large isolated
## 2584 3 12 1014 3|14 low Small-Large isolated
## 2585 3 12 1014 3|14 low Small-Large isolated
## 2586 3 12 1014 3|14 low Small-Large isolated
## 2587 3 12 1014 3|14 low Small-Large isolated
## 2588 3 12 1014 3|14 low Small-Large isolated
## 2589 3 12 1014 3|14 low Small-Large isolated
## 2590 3 12 1014 3|14 low Small-Large isolated
## 2591 3 12 1014 3|14 low Small-Large isolated
## 2592 3 12 1014 3|14 low Small-Large isolated
## 2593 4 16 1014 3|14 low Small-Large isolated
## 2594 4 16 1014 3|14 low Small-Large isolated
## 2595 4 16 1014 3|14 low Small-Large isolated
## 2596 4 16 1014 3|14 low Small-Large isolated
## 2597 4 16 1014 3|14 low Small-Large isolated
## 2598 4 16 1014 3|14 low Small-Large isolated
## 2599 4 16 1014 3|14 low Small-Large isolated
## 2600 4 16 1014 3|14 low Small-Large isolated
## 2601 4 16 1014 3|14 low Small-Large isolated
## 2602 4 16 1014 3|14 low Small-Large isolated
## 2603 4 16 1014 3|14 low Small-Large isolated
## 2604 4 16 1014 3|14 low Small-Large isolated
## 2605 4 16 1014 3|14 low Small-Large isolated
## 2606 4 16 1014 3|14 low Small-Large isolated
## 2607 4 16 1014 3|14 low Small-Large isolated
## 2608 4 16 1014 3|14 low Small-Large isolated
## 2609 4 16 1014 3|14 low Small-Large isolated
## 2610 4 16 1014 3|14 low Small-Large isolated
## 2611 4 16 1014 3|14 low Small-Large isolated
## 2612 4 16 1014 3|14 low Small-Large isolated
## 2613 4 16 1014 3|14 low Small-Large isolated
## 2614 4 16 1014 3|14 low Small-Large isolated
## 2615 4 16 1014 3|14 low Small-Large isolated
## 2616 4 16 1014 3|14 low Small-Large isolated
## 2617 5 20 1014 3|14 low Small-Large isolated
## 2618 5 20 1014 3|14 low Small-Large isolated
## 2619 5 20 1014 3|14 low Small-Large isolated
## 2620 5 20 1014 3|14 low Small-Large isolated
## 2621 5 20 1014 3|14 low Small-Large isolated
## 2622 5 20 1014 3|14 low Small-Large isolated
## 2623 5 20 1014 3|14 low Small-Large isolated
## 2624 5 20 1014 3|14 low Small-Large isolated
## 2625 5 20 1014 3|14 low Small-Large isolated
## 2626 5 20 1014 3|14 low Small-Large isolated
## 2627 5 20 1014 3|14 low Small-Large isolated
## 2628 5 20 1014 3|14 low Small-Large isolated
## 2629 5 20 1014 3|14 low Small-Large isolated
## 2630 5 20 1014 3|14 low Small-Large isolated
## 2631 5 20 1014 3|14 low Small-Large isolated
## 2632 5 20 1014 3|14 low Small-Large isolated
## 2633 5 20 1014 3|14 low Small-Large isolated
## 2634 5 20 1014 3|14 low Small-Large isolated
## 2635 5 20 1014 3|14 low Small-Large isolated
## 2636 5 20 1014 3|14 low Small-Large isolated
## 2637 5 20 1014 3|14 low Small-Large isolated
## 2638 5 20 1014 3|14 low Small-Large isolated
## 2639 5 20 1014 3|14 low Small-Large isolated
## 2640 5 20 1014 3|14 low Small-Large isolated
## 2641 6 24 1014 3|14 low Small-Large isolated
## 2642 6 24 1014 3|14 low Small-Large isolated
## 2643 6 24 1014 3|14 low Small-Large isolated
## 2644 6 24 1014 3|14 low Small-Large isolated
## 2645 6 24 1014 3|14 low Small-Large isolated
## 2646 6 24 1014 3|14 low Small-Large isolated
## 2647 6 24 1014 3|14 low Small-Large isolated
## 2648 6 24 1014 3|14 low Small-Large isolated
## 2649 6 24 1014 3|14 low Small-Large isolated
## 2650 6 24 1014 3|14 low Small-Large isolated
## 2651 6 24 1014 3|14 low Small-Large isolated
## 2652 6 24 1014 3|14 low Small-Large isolated
## 2653 6 24 1014 3|14 low Small-Large isolated
## 2654 6 24 1014 3|14 low Small-Large isolated
## 2655 6 24 1014 3|14 low Small-Large isolated
## 2656 6 24 1014 3|14 low Small-Large isolated
## 2657 6 24 1014 3|14 low Small-Large isolated
## 2658 6 24 1014 3|14 low Small-Large isolated
## 2659 6 24 1014 3|14 low Small-Large isolated
## 2660 6 24 1014 3|14 low Small-Large isolated
## 2661 6 24 1014 3|14 low Small-Large isolated
## 2662 6 24 1014 3|14 low Small-Large isolated
## 2663 6 24 1014 3|14 low Small-Large isolated
## 2664 6 24 1014 3|14 low Small-Large isolated
## 2665 7 28 1014 3|14 low Small-Large isolated
## 2666 7 28 1014 3|14 low Small-Large isolated
## 2667 7 28 1014 3|14 low Small-Large isolated
## 2668 7 28 1014 3|14 low Small-Large isolated
## 2669 7 28 1014 3|14 low Small-Large isolated
## 2670 7 28 1014 3|14 low Small-Large isolated
## 2671 7 28 1014 3|14 low Small-Large isolated
## 2672 7 28 1014 3|14 low Small-Large isolated
## 2673 7 28 1014 3|14 low Small-Large isolated
## 2674 7 28 1014 3|14 low Small-Large isolated
## 2675 7 28 1014 3|14 low Small-Large isolated
## 2676 7 28 1014 3|14 low Small-Large isolated
## 2677 7 28 1014 3|14 low Small-Large isolated
## 2678 7 28 1014 3|14 low Small-Large isolated
## 2679 7 28 1014 3|14 low Small-Large isolated
## 2680 7 28 1014 3|14 low Small-Large isolated
## 2681 7 28 1014 3|14 low Small-Large isolated
## 2682 7 28 1014 3|14 low Small-Large isolated
## 2683 7 28 1014 3|14 low Small-Large isolated
## 2684 7 28 1014 3|14 low Small-Large isolated
## 2685 7 28 1014 3|14 low Small-Large isolated
## 2686 7 28 1014 3|14 low Small-Large isolated
## 2687 7 28 1014 3|14 low Small-Large isolated
## 2688 7 28 1014 3|14 low Small-Large isolated
## 2689 0 0 1015 3|15 low Small-Large isolated
## 2690 0 0 1015 3|15 low Small-Large isolated
## 2691 0 0 1015 3|15 low Small-Large isolated
## 2692 0 0 1015 3|15 low Small-Large isolated
## 2693 0 0 1015 3|15 low Small-Large isolated
## 2694 0 0 1015 3|15 low Small-Large isolated
## 2695 0 0 1015 3|15 low Small-Large isolated
## 2696 0 0 1015 3|15 low Small-Large isolated
## 2697 0 0 1015 3|15 low Small-Large isolated
## 2698 0 0 1015 3|15 low Small-Large isolated
## 2699 0 0 1015 3|15 low Small-Large isolated
## 2700 0 0 1015 3|15 low Small-Large isolated
## 2701 0 0 1015 3|15 low Small-Large isolated
## 2702 0 0 1015 3|15 low Small-Large isolated
## 2703 0 0 1015 3|15 low Small-Large isolated
## 2704 0 0 1015 3|15 low Small-Large isolated
## 2705 0 0 1015 3|15 low Small-Large isolated
## 2706 0 0 1015 3|15 low Small-Large isolated
## 2707 0 0 1015 3|15 low Small-Large isolated
## 2708 0 0 1015 3|15 low Small-Large isolated
## 2709 0 0 1015 3|15 low Small-Large isolated
## 2710 0 0 1015 3|15 low Small-Large isolated
## 2711 0 0 1015 3|15 low Small-Large isolated
## 2712 0 0 1015 3|15 low Small-Large isolated
## 2713 1 4 1015 3|15 low Small-Large isolated
## 2714 1 4 1015 3|15 low Small-Large isolated
## 2715 1 4 1015 3|15 low Small-Large isolated
## 2716 1 4 1015 3|15 low Small-Large isolated
## 2717 1 4 1015 3|15 low Small-Large isolated
## 2718 1 4 1015 3|15 low Small-Large isolated
## 2719 1 4 1015 3|15 low Small-Large isolated
## 2720 1 4 1015 3|15 low Small-Large isolated
## 2721 1 4 1015 3|15 low Small-Large isolated
## 2722 1 4 1015 3|15 low Small-Large isolated
## 2723 1 4 1015 3|15 low Small-Large isolated
## 2724 1 4 1015 3|15 low Small-Large isolated
## 2725 1 4 1015 3|15 low Small-Large isolated
## 2726 1 4 1015 3|15 low Small-Large isolated
## 2727 1 4 1015 3|15 low Small-Large isolated
## 2728 1 4 1015 3|15 low Small-Large isolated
## 2729 1 4 1015 3|15 low Small-Large isolated
## 2730 1 4 1015 3|15 low Small-Large isolated
## 2731 1 4 1015 3|15 low Small-Large isolated
## 2732 1 4 1015 3|15 low Small-Large isolated
## 2733 1 4 1015 3|15 low Small-Large isolated
## 2734 1 4 1015 3|15 low Small-Large isolated
## 2735 1 4 1015 3|15 low Small-Large isolated
## 2736 1 4 1015 3|15 low Small-Large isolated
## 2737 2 8 1015 3|15 low Small-Large isolated
## 2738 2 8 1015 3|15 low Small-Large isolated
## 2739 2 8 1015 3|15 low Small-Large isolated
## 2740 2 8 1015 3|15 low Small-Large isolated
## 2741 2 8 1015 3|15 low Small-Large isolated
## 2742 2 8 1015 3|15 low Small-Large isolated
## 2743 2 8 1015 3|15 low Small-Large isolated
## 2744 2 8 1015 3|15 low Small-Large isolated
## 2745 2 8 1015 3|15 low Small-Large isolated
## 2746 2 8 1015 3|15 low Small-Large isolated
## 2747 2 8 1015 3|15 low Small-Large isolated
## 2748 2 8 1015 3|15 low Small-Large isolated
## 2749 2 8 1015 3|15 low Small-Large isolated
## 2750 2 8 1015 3|15 low Small-Large isolated
## 2751 2 8 1015 3|15 low Small-Large isolated
## 2752 2 8 1015 3|15 low Small-Large isolated
## 2753 2 8 1015 3|15 low Small-Large isolated
## 2754 2 8 1015 3|15 low Small-Large isolated
## 2755 2 8 1015 3|15 low Small-Large isolated
## 2756 2 8 1015 3|15 low Small-Large isolated
## 2757 2 8 1015 3|15 low Small-Large isolated
## 2758 2 8 1015 3|15 low Small-Large isolated
## 2759 2 8 1015 3|15 low Small-Large isolated
## 2760 2 8 1015 3|15 low Small-Large isolated
## 2761 3 12 1015 3|15 low Small-Large isolated
## 2762 3 12 1015 3|15 low Small-Large isolated
## 2763 3 12 1015 3|15 low Small-Large isolated
## 2764 3 12 1015 3|15 low Small-Large isolated
## 2765 3 12 1015 3|15 low Small-Large isolated
## 2766 3 12 1015 3|15 low Small-Large isolated
## 2767 3 12 1015 3|15 low Small-Large isolated
## 2768 3 12 1015 3|15 low Small-Large isolated
## 2769 3 12 1015 3|15 low Small-Large isolated
## 2770 3 12 1015 3|15 low Small-Large isolated
## 2771 3 12 1015 3|15 low Small-Large isolated
## 2772 3 12 1015 3|15 low Small-Large isolated
## 2773 3 12 1015 3|15 low Small-Large isolated
## 2774 3 12 1015 3|15 low Small-Large isolated
## 2775 3 12 1015 3|15 low Small-Large isolated
## 2776 3 12 1015 3|15 low Small-Large isolated
## 2777 3 12 1015 3|15 low Small-Large isolated
## 2778 3 12 1015 3|15 low Small-Large isolated
## 2779 3 12 1015 3|15 low Small-Large isolated
## 2780 3 12 1015 3|15 low Small-Large isolated
## 2781 3 12 1015 3|15 low Small-Large isolated
## 2782 3 12 1015 3|15 low Small-Large isolated
## 2783 3 12 1015 3|15 low Small-Large isolated
## 2784 3 12 1015 3|15 low Small-Large isolated
## 2785 4 16 1015 3|15 low Small-Large isolated
## 2786 4 16 1015 3|15 low Small-Large isolated
## 2787 4 16 1015 3|15 low Small-Large isolated
## 2788 4 16 1015 3|15 low Small-Large isolated
## 2789 4 16 1015 3|15 low Small-Large isolated
## 2790 4 16 1015 3|15 low Small-Large isolated
## 2791 4 16 1015 3|15 low Small-Large isolated
## 2792 4 16 1015 3|15 low Small-Large isolated
## 2793 4 16 1015 3|15 low Small-Large isolated
## 2794 4 16 1015 3|15 low Small-Large isolated
## 2795 4 16 1015 3|15 low Small-Large isolated
## 2796 4 16 1015 3|15 low Small-Large isolated
## 2797 4 16 1015 3|15 low Small-Large isolated
## 2798 4 16 1015 3|15 low Small-Large isolated
## 2799 4 16 1015 3|15 low Small-Large isolated
## 2800 4 16 1015 3|15 low Small-Large isolated
## 2801 4 16 1015 3|15 low Small-Large isolated
## 2802 4 16 1015 3|15 low Small-Large isolated
## 2803 4 16 1015 3|15 low Small-Large isolated
## 2804 4 16 1015 3|15 low Small-Large isolated
## 2805 4 16 1015 3|15 low Small-Large isolated
## 2806 4 16 1015 3|15 low Small-Large isolated
## 2807 4 16 1015 3|15 low Small-Large isolated
## 2808 4 16 1015 3|15 low Small-Large isolated
## 2809 5 20 1015 3|15 low Small-Large isolated
## 2810 5 20 1015 3|15 low Small-Large isolated
## 2811 5 20 1015 3|15 low Small-Large isolated
## 2812 5 20 1015 3|15 low Small-Large isolated
## 2813 5 20 1015 3|15 low Small-Large isolated
## 2814 5 20 1015 3|15 low Small-Large isolated
## 2815 5 20 1015 3|15 low Small-Large isolated
## 2816 5 20 1015 3|15 low Small-Large isolated
## 2817 5 20 1015 3|15 low Small-Large isolated
## 2818 5 20 1015 3|15 low Small-Large isolated
## 2819 5 20 1015 3|15 low Small-Large isolated
## 2820 5 20 1015 3|15 low Small-Large isolated
## 2821 5 20 1015 3|15 low Small-Large isolated
## 2822 5 20 1015 3|15 low Small-Large isolated
## 2823 5 20 1015 3|15 low Small-Large isolated
## 2824 5 20 1015 3|15 low Small-Large isolated
## 2825 5 20 1015 3|15 low Small-Large isolated
## 2826 5 20 1015 3|15 low Small-Large isolated
## 2827 5 20 1015 3|15 low Small-Large isolated
## 2828 5 20 1015 3|15 low Small-Large isolated
## 2829 5 20 1015 3|15 low Small-Large isolated
## 2830 5 20 1015 3|15 low Small-Large isolated
## 2831 5 20 1015 3|15 low Small-Large isolated
## 2832 5 20 1015 3|15 low Small-Large isolated
## 2833 6 24 1015 3|15 low Small-Large isolated
## 2834 6 24 1015 3|15 low Small-Large isolated
## 2835 6 24 1015 3|15 low Small-Large isolated
## 2836 6 24 1015 3|15 low Small-Large isolated
## 2837 6 24 1015 3|15 low Small-Large isolated
## 2838 6 24 1015 3|15 low Small-Large isolated
## 2839 6 24 1015 3|15 low Small-Large isolated
## 2840 6 24 1015 3|15 low Small-Large isolated
## 2841 6 24 1015 3|15 low Small-Large isolated
## 2842 6 24 1015 3|15 low Small-Large isolated
## 2843 6 24 1015 3|15 low Small-Large isolated
## 2844 6 24 1015 3|15 low Small-Large isolated
## 2845 6 24 1015 3|15 low Small-Large isolated
## 2846 6 24 1015 3|15 low Small-Large isolated
## 2847 6 24 1015 3|15 low Small-Large isolated
## 2848 6 24 1015 3|15 low Small-Large isolated
## 2849 6 24 1015 3|15 low Small-Large isolated
## 2850 6 24 1015 3|15 low Small-Large isolated
## 2851 6 24 1015 3|15 low Small-Large isolated
## 2852 6 24 1015 3|15 low Small-Large isolated
## 2853 6 24 1015 3|15 low Small-Large isolated
## 2854 6 24 1015 3|15 low Small-Large isolated
## 2855 6 24 1015 3|15 low Small-Large isolated
## 2856 6 24 1015 3|15 low Small-Large isolated
## 2857 7 28 1015 3|15 low Small-Large isolated
## 2858 7 28 1015 3|15 low Small-Large isolated
## 2859 7 28 1015 3|15 low Small-Large isolated
## 2860 7 28 1015 3|15 low Small-Large isolated
## 2861 7 28 1015 3|15 low Small-Large isolated
## 2862 7 28 1015 3|15 low Small-Large isolated
## 2863 7 28 1015 3|15 low Small-Large isolated
## 2864 7 28 1015 3|15 low Small-Large isolated
## 2865 7 28 1015 3|15 low Small-Large isolated
## 2866 7 28 1015 3|15 low Small-Large isolated
## 2867 7 28 1015 3|15 low Small-Large isolated
## 2868 7 28 1015 3|15 low Small-Large isolated
## 2869 7 28 1015 3|15 low Small-Large isolated
## 2870 7 28 1015 3|15 low Small-Large isolated
## 2871 7 28 1015 3|15 low Small-Large isolated
## 2872 7 28 1015 3|15 low Small-Large isolated
## 2873 7 28 1015 3|15 low Small-Large isolated
## 2874 7 28 1015 3|15 low Small-Large isolated
## 2875 7 28 1015 3|15 low Small-Large isolated
## 2876 7 28 1015 3|15 low Small-Large isolated
## 2877 7 28 1015 3|15 low Small-Large isolated
## 2878 7 28 1015 3|15 low Small-Large isolated
## 2879 7 28 1015 3|15 low Small-Large isolated
## 2880 7 28 1015 3|15 low Small-Large isolated
## 2881 0 0 1016 4|11 low Small-Large isolated
## 2882 0 0 1016 4|11 low Small-Large isolated
## 2883 0 0 1016 4|11 low Small-Large isolated
## 2884 0 0 1016 4|11 low Small-Large isolated
## 2885 0 0 1016 4|11 low Small-Large isolated
## 2886 0 0 1016 4|11 low Small-Large isolated
## 2887 0 0 1016 4|11 low Small-Large isolated
## 2888 0 0 1016 4|11 low Small-Large isolated
## 2889 0 0 1016 4|11 low Small-Large isolated
## 2890 0 0 1016 4|11 low Small-Large isolated
## 2891 0 0 1016 4|11 low Small-Large isolated
## 2892 0 0 1016 4|11 low Small-Large isolated
## 2893 0 0 1016 4|11 low Small-Large isolated
## 2894 0 0 1016 4|11 low Small-Large isolated
## 2895 0 0 1016 4|11 low Small-Large isolated
## 2896 0 0 1016 4|11 low Small-Large isolated
## 2897 0 0 1016 4|11 low Small-Large isolated
## 2898 0 0 1016 4|11 low Small-Large isolated
## 2899 0 0 1016 4|11 low Small-Large isolated
## 2900 0 0 1016 4|11 low Small-Large isolated
## 2901 0 0 1016 4|11 low Small-Large isolated
## 2902 0 0 1016 4|11 low Small-Large isolated
## 2903 0 0 1016 4|11 low Small-Large isolated
## 2904 0 0 1016 4|11 low Small-Large isolated
## 2905 1 4 1016 4|11 low Small-Large isolated
## 2906 1 4 1016 4|11 low Small-Large isolated
## 2907 1 4 1016 4|11 low Small-Large isolated
## 2908 1 4 1016 4|11 low Small-Large isolated
## 2909 1 4 1016 4|11 low Small-Large isolated
## 2910 1 4 1016 4|11 low Small-Large isolated
## 2911 1 4 1016 4|11 low Small-Large isolated
## 2912 1 4 1016 4|11 low Small-Large isolated
## 2913 1 4 1016 4|11 low Small-Large isolated
## 2914 1 4 1016 4|11 low Small-Large isolated
## 2915 1 4 1016 4|11 low Small-Large isolated
## 2916 1 4 1016 4|11 low Small-Large isolated
## 2917 1 4 1016 4|11 low Small-Large isolated
## 2918 1 4 1016 4|11 low Small-Large isolated
## 2919 1 4 1016 4|11 low Small-Large isolated
## 2920 1 4 1016 4|11 low Small-Large isolated
## 2921 1 4 1016 4|11 low Small-Large isolated
## 2922 1 4 1016 4|11 low Small-Large isolated
## 2923 1 4 1016 4|11 low Small-Large isolated
## 2924 1 4 1016 4|11 low Small-Large isolated
## 2925 1 4 1016 4|11 low Small-Large isolated
## 2926 1 4 1016 4|11 low Small-Large isolated
## 2927 1 4 1016 4|11 low Small-Large isolated
## 2928 1 4 1016 4|11 low Small-Large isolated
## 2929 2 8 1016 4|11 low Small-Large isolated
## 2930 2 8 1016 4|11 low Small-Large isolated
## 2931 2 8 1016 4|11 low Small-Large isolated
## 2932 2 8 1016 4|11 low Small-Large isolated
## 2933 2 8 1016 4|11 low Small-Large isolated
## 2934 2 8 1016 4|11 low Small-Large isolated
## 2935 2 8 1016 4|11 low Small-Large isolated
## 2936 2 8 1016 4|11 low Small-Large isolated
## 2937 2 8 1016 4|11 low Small-Large isolated
## 2938 2 8 1016 4|11 low Small-Large isolated
## 2939 2 8 1016 4|11 low Small-Large isolated
## 2940 2 8 1016 4|11 low Small-Large isolated
## 2941 2 8 1016 4|11 low Small-Large isolated
## 2942 2 8 1016 4|11 low Small-Large isolated
## 2943 2 8 1016 4|11 low Small-Large isolated
## 2944 2 8 1016 4|11 low Small-Large isolated
## 2945 2 8 1016 4|11 low Small-Large isolated
## 2946 2 8 1016 4|11 low Small-Large isolated
## 2947 2 8 1016 4|11 low Small-Large isolated
## 2948 2 8 1016 4|11 low Small-Large isolated
## 2949 2 8 1016 4|11 low Small-Large isolated
## 2950 2 8 1016 4|11 low Small-Large isolated
## 2951 2 8 1016 4|11 low Small-Large isolated
## 2952 2 8 1016 4|11 low Small-Large isolated
## 2953 3 12 1016 4|11 low Small-Large isolated
## 2954 3 12 1016 4|11 low Small-Large isolated
## 2955 3 12 1016 4|11 low Small-Large isolated
## 2956 3 12 1016 4|11 low Small-Large isolated
## 2957 3 12 1016 4|11 low Small-Large isolated
## 2958 3 12 1016 4|11 low Small-Large isolated
## 2959 3 12 1016 4|11 low Small-Large isolated
## 2960 3 12 1016 4|11 low Small-Large isolated
## 2961 3 12 1016 4|11 low Small-Large isolated
## 2962 3 12 1016 4|11 low Small-Large isolated
## 2963 3 12 1016 4|11 low Small-Large isolated
## 2964 3 12 1016 4|11 low Small-Large isolated
## 2965 3 12 1016 4|11 low Small-Large isolated
## 2966 3 12 1016 4|11 low Small-Large isolated
## 2967 3 12 1016 4|11 low Small-Large isolated
## 2968 3 12 1016 4|11 low Small-Large isolated
## 2969 3 12 1016 4|11 low Small-Large isolated
## 2970 3 12 1016 4|11 low Small-Large isolated
## 2971 3 12 1016 4|11 low Small-Large isolated
## 2972 3 12 1016 4|11 low Small-Large isolated
## 2973 3 12 1016 4|11 low Small-Large isolated
## 2974 3 12 1016 4|11 low Small-Large isolated
## 2975 3 12 1016 4|11 low Small-Large isolated
## 2976 3 12 1016 4|11 low Small-Large isolated
## 2977 4 16 1016 4|11 low Small-Large isolated
## 2978 4 16 1016 4|11 low Small-Large isolated
## 2979 4 16 1016 4|11 low Small-Large isolated
## 2980 4 16 1016 4|11 low Small-Large isolated
## 2981 4 16 1016 4|11 low Small-Large isolated
## 2982 4 16 1016 4|11 low Small-Large isolated
## 2983 4 16 1016 4|11 low Small-Large isolated
## 2984 4 16 1016 4|11 low Small-Large isolated
## 2985 4 16 1016 4|11 low Small-Large isolated
## 2986 4 16 1016 4|11 low Small-Large isolated
## 2987 4 16 1016 4|11 low Small-Large isolated
## 2988 4 16 1016 4|11 low Small-Large isolated
## 2989 4 16 1016 4|11 low Small-Large isolated
## 2990 4 16 1016 4|11 low Small-Large isolated
## 2991 4 16 1016 4|11 low Small-Large isolated
## 2992 4 16 1016 4|11 low Small-Large isolated
## 2993 4 16 1016 4|11 low Small-Large isolated
## 2994 4 16 1016 4|11 low Small-Large isolated
## 2995 4 16 1016 4|11 low Small-Large isolated
## 2996 4 16 1016 4|11 low Small-Large isolated
## 2997 4 16 1016 4|11 low Small-Large isolated
## 2998 4 16 1016 4|11 low Small-Large isolated
## 2999 4 16 1016 4|11 low Small-Large isolated
## 3000 4 16 1016 4|11 low Small-Large isolated
## 3001 5 20 1016 4|11 low Small-Large isolated
## 3002 5 20 1016 4|11 low Small-Large isolated
## 3003 5 20 1016 4|11 low Small-Large isolated
## 3004 5 20 1016 4|11 low Small-Large isolated
## 3005 5 20 1016 4|11 low Small-Large isolated
## 3006 5 20 1016 4|11 low Small-Large isolated
## 3007 5 20 1016 4|11 low Small-Large isolated
## 3008 5 20 1016 4|11 low Small-Large isolated
## 3009 5 20 1016 4|11 low Small-Large isolated
## 3010 5 20 1016 4|11 low Small-Large isolated
## 3011 5 20 1016 4|11 low Small-Large isolated
## 3012 5 20 1016 4|11 low Small-Large isolated
## 3013 5 20 1016 4|11 low Small-Large isolated
## 3014 5 20 1016 4|11 low Small-Large isolated
## 3015 5 20 1016 4|11 low Small-Large isolated
## 3016 5 20 1016 4|11 low Small-Large isolated
## 3017 5 20 1016 4|11 low Small-Large isolated
## 3018 5 20 1016 4|11 low Small-Large isolated
## 3019 5 20 1016 4|11 low Small-Large isolated
## 3020 5 20 1016 4|11 low Small-Large isolated
## 3021 5 20 1016 4|11 low Small-Large isolated
## 3022 5 20 1016 4|11 low Small-Large isolated
## 3023 5 20 1016 4|11 low Small-Large isolated
## 3024 5 20 1016 4|11 low Small-Large isolated
## 3025 6 24 1016 4|11 low Small-Large isolated
## 3026 6 24 1016 4|11 low Small-Large isolated
## 3027 6 24 1016 4|11 low Small-Large isolated
## 3028 6 24 1016 4|11 low Small-Large isolated
## 3029 6 24 1016 4|11 low Small-Large isolated
## 3030 6 24 1016 4|11 low Small-Large isolated
## 3031 6 24 1016 4|11 low Small-Large isolated
## 3032 6 24 1016 4|11 low Small-Large isolated
## 3033 6 24 1016 4|11 low Small-Large isolated
## 3034 6 24 1016 4|11 low Small-Large isolated
## 3035 6 24 1016 4|11 low Small-Large isolated
## 3036 6 24 1016 4|11 low Small-Large isolated
## 3037 6 24 1016 4|11 low Small-Large isolated
## 3038 6 24 1016 4|11 low Small-Large isolated
## 3039 6 24 1016 4|11 low Small-Large isolated
## 3040 6 24 1016 4|11 low Small-Large isolated
## 3041 6 24 1016 4|11 low Small-Large isolated
## 3042 6 24 1016 4|11 low Small-Large isolated
## 3043 6 24 1016 4|11 low Small-Large isolated
## 3044 6 24 1016 4|11 low Small-Large isolated
## 3045 6 24 1016 4|11 low Small-Large isolated
## 3046 6 24 1016 4|11 low Small-Large isolated
## 3047 6 24 1016 4|11 low Small-Large isolated
## 3048 6 24 1016 4|11 low Small-Large isolated
## 3049 7 28 1016 4|11 low Small-Large isolated
## 3050 7 28 1016 4|11 low Small-Large isolated
## 3051 7 28 1016 4|11 low Small-Large isolated
## 3052 7 28 1016 4|11 low Small-Large isolated
## 3053 7 28 1016 4|11 low Small-Large isolated
## 3054 7 28 1016 4|11 low Small-Large isolated
## 3055 7 28 1016 4|11 low Small-Large isolated
## 3056 7 28 1016 4|11 low Small-Large isolated
## 3057 7 28 1016 4|11 low Small-Large isolated
## 3058 7 28 1016 4|11 low Small-Large isolated
## 3059 7 28 1016 4|11 low Small-Large isolated
## 3060 7 28 1016 4|11 low Small-Large isolated
## 3061 7 28 1016 4|11 low Small-Large isolated
## 3062 7 28 1016 4|11 low Small-Large isolated
## 3063 7 28 1016 4|11 low Small-Large isolated
## 3064 7 28 1016 4|11 low Small-Large isolated
## 3065 7 28 1016 4|11 low Small-Large isolated
## 3066 7 28 1016 4|11 low Small-Large isolated
## 3067 7 28 1016 4|11 low Small-Large isolated
## 3068 7 28 1016 4|11 low Small-Large isolated
## 3069 7 28 1016 4|11 low Small-Large isolated
## 3070 7 28 1016 4|11 low Small-Large isolated
## 3071 7 28 1016 4|11 low Small-Large isolated
## 3072 7 28 1016 4|11 low Small-Large isolated
## 3073 0 0 1017 4|12 low Small-Large isolated
## 3074 0 0 1017 4|12 low Small-Large isolated
## 3075 0 0 1017 4|12 low Small-Large isolated
## 3076 0 0 1017 4|12 low Small-Large isolated
## 3077 0 0 1017 4|12 low Small-Large isolated
## 3078 0 0 1017 4|12 low Small-Large isolated
## 3079 0 0 1017 4|12 low Small-Large isolated
## 3080 0 0 1017 4|12 low Small-Large isolated
## 3081 0 0 1017 4|12 low Small-Large isolated
## 3082 0 0 1017 4|12 low Small-Large isolated
## 3083 0 0 1017 4|12 low Small-Large isolated
## 3084 0 0 1017 4|12 low Small-Large isolated
## 3085 0 0 1017 4|12 low Small-Large isolated
## 3086 0 0 1017 4|12 low Small-Large isolated
## 3087 0 0 1017 4|12 low Small-Large isolated
## 3088 0 0 1017 4|12 low Small-Large isolated
## 3089 0 0 1017 4|12 low Small-Large isolated
## 3090 0 0 1017 4|12 low Small-Large isolated
## 3091 0 0 1017 4|12 low Small-Large isolated
## 3092 0 0 1017 4|12 low Small-Large isolated
## 3093 0 0 1017 4|12 low Small-Large isolated
## 3094 0 0 1017 4|12 low Small-Large isolated
## 3095 0 0 1017 4|12 low Small-Large isolated
## 3096 0 0 1017 4|12 low Small-Large isolated
## 3097 1 4 1017 4|12 low Small-Large isolated
## 3098 1 4 1017 4|12 low Small-Large isolated
## 3099 1 4 1017 4|12 low Small-Large isolated
## 3100 1 4 1017 4|12 low Small-Large isolated
## 3101 1 4 1017 4|12 low Small-Large isolated
## 3102 1 4 1017 4|12 low Small-Large isolated
## 3103 1 4 1017 4|12 low Small-Large isolated
## 3104 1 4 1017 4|12 low Small-Large isolated
## 3105 1 4 1017 4|12 low Small-Large isolated
## 3106 1 4 1017 4|12 low Small-Large isolated
## 3107 1 4 1017 4|12 low Small-Large isolated
## 3108 1 4 1017 4|12 low Small-Large isolated
## 3109 1 4 1017 4|12 low Small-Large isolated
## 3110 1 4 1017 4|12 low Small-Large isolated
## 3111 1 4 1017 4|12 low Small-Large isolated
## 3112 1 4 1017 4|12 low Small-Large isolated
## 3113 1 4 1017 4|12 low Small-Large isolated
## 3114 1 4 1017 4|12 low Small-Large isolated
## 3115 1 4 1017 4|12 low Small-Large isolated
## 3116 1 4 1017 4|12 low Small-Large isolated
## 3117 1 4 1017 4|12 low Small-Large isolated
## 3118 1 4 1017 4|12 low Small-Large isolated
## 3119 1 4 1017 4|12 low Small-Large isolated
## 3120 1 4 1017 4|12 low Small-Large isolated
## 3121 2 8 1017 4|12 low Small-Large isolated
## 3122 2 8 1017 4|12 low Small-Large isolated
## 3123 2 8 1017 4|12 low Small-Large isolated
## 3124 2 8 1017 4|12 low Small-Large isolated
## 3125 2 8 1017 4|12 low Small-Large isolated
## 3126 2 8 1017 4|12 low Small-Large isolated
## 3127 2 8 1017 4|12 low Small-Large isolated
## 3128 2 8 1017 4|12 low Small-Large isolated
## 3129 2 8 1017 4|12 low Small-Large isolated
## 3130 2 8 1017 4|12 low Small-Large isolated
## 3131 2 8 1017 4|12 low Small-Large isolated
## 3132 2 8 1017 4|12 low Small-Large isolated
## 3133 2 8 1017 4|12 low Small-Large isolated
## 3134 2 8 1017 4|12 low Small-Large isolated
## 3135 2 8 1017 4|12 low Small-Large isolated
## 3136 2 8 1017 4|12 low Small-Large isolated
## 3137 2 8 1017 4|12 low Small-Large isolated
## 3138 2 8 1017 4|12 low Small-Large isolated
## 3139 2 8 1017 4|12 low Small-Large isolated
## 3140 2 8 1017 4|12 low Small-Large isolated
## 3141 2 8 1017 4|12 low Small-Large isolated
## 3142 2 8 1017 4|12 low Small-Large isolated
## 3143 2 8 1017 4|12 low Small-Large isolated
## 3144 2 8 1017 4|12 low Small-Large isolated
## 3145 3 12 1017 4|12 low Small-Large isolated
## 3146 3 12 1017 4|12 low Small-Large isolated
## 3147 3 12 1017 4|12 low Small-Large isolated
## 3148 3 12 1017 4|12 low Small-Large isolated
## 3149 3 12 1017 4|12 low Small-Large isolated
## 3150 3 12 1017 4|12 low Small-Large isolated
## 3151 3 12 1017 4|12 low Small-Large isolated
## 3152 3 12 1017 4|12 low Small-Large isolated
## 3153 3 12 1017 4|12 low Small-Large isolated
## 3154 3 12 1017 4|12 low Small-Large isolated
## 3155 3 12 1017 4|12 low Small-Large isolated
## 3156 3 12 1017 4|12 low Small-Large isolated
## 3157 3 12 1017 4|12 low Small-Large isolated
## 3158 3 12 1017 4|12 low Small-Large isolated
## 3159 3 12 1017 4|12 low Small-Large isolated
## 3160 3 12 1017 4|12 low Small-Large isolated
## 3161 3 12 1017 4|12 low Small-Large isolated
## 3162 3 12 1017 4|12 low Small-Large isolated
## 3163 3 12 1017 4|12 low Small-Large isolated
## 3164 3 12 1017 4|12 low Small-Large isolated
## 3165 3 12 1017 4|12 low Small-Large isolated
## 3166 3 12 1017 4|12 low Small-Large isolated
## 3167 3 12 1017 4|12 low Small-Large isolated
## 3168 3 12 1017 4|12 low Small-Large isolated
## 3169 4 16 1017 4|12 low Small-Large isolated
## 3170 4 16 1017 4|12 low Small-Large isolated
## 3171 4 16 1017 4|12 low Small-Large isolated
## 3172 4 16 1017 4|12 low Small-Large isolated
## 3173 4 16 1017 4|12 low Small-Large isolated
## 3174 4 16 1017 4|12 low Small-Large isolated
## 3175 4 16 1017 4|12 low Small-Large isolated
## 3176 4 16 1017 4|12 low Small-Large isolated
## 3177 4 16 1017 4|12 low Small-Large isolated
## 3178 4 16 1017 4|12 low Small-Large isolated
## 3179 4 16 1017 4|12 low Small-Large isolated
## 3180 4 16 1017 4|12 low Small-Large isolated
## 3181 4 16 1017 4|12 low Small-Large isolated
## 3182 4 16 1017 4|12 low Small-Large isolated
## 3183 4 16 1017 4|12 low Small-Large isolated
## 3184 4 16 1017 4|12 low Small-Large isolated
## 3185 4 16 1017 4|12 low Small-Large isolated
## 3186 4 16 1017 4|12 low Small-Large isolated
## 3187 4 16 1017 4|12 low Small-Large isolated
## 3188 4 16 1017 4|12 low Small-Large isolated
## 3189 4 16 1017 4|12 low Small-Large isolated
## 3190 4 16 1017 4|12 low Small-Large isolated
## 3191 4 16 1017 4|12 low Small-Large isolated
## 3192 4 16 1017 4|12 low Small-Large isolated
## 3193 5 20 1017 4|12 low Small-Large isolated
## 3194 5 20 1017 4|12 low Small-Large isolated
## 3195 5 20 1017 4|12 low Small-Large isolated
## 3196 5 20 1017 4|12 low Small-Large isolated
## 3197 5 20 1017 4|12 low Small-Large isolated
## 3198 5 20 1017 4|12 low Small-Large isolated
## 3199 5 20 1017 4|12 low Small-Large isolated
## 3200 5 20 1017 4|12 low Small-Large isolated
## 3201 5 20 1017 4|12 low Small-Large isolated
## 3202 5 20 1017 4|12 low Small-Large isolated
## 3203 5 20 1017 4|12 low Small-Large isolated
## 3204 5 20 1017 4|12 low Small-Large isolated
## 3205 5 20 1017 4|12 low Small-Large isolated
## 3206 5 20 1017 4|12 low Small-Large isolated
## 3207 5 20 1017 4|12 low Small-Large isolated
## 3208 5 20 1017 4|12 low Small-Large isolated
## 3209 5 20 1017 4|12 low Small-Large isolated
## 3210 5 20 1017 4|12 low Small-Large isolated
## 3211 5 20 1017 4|12 low Small-Large isolated
## 3212 5 20 1017 4|12 low Small-Large isolated
## 3213 5 20 1017 4|12 low Small-Large isolated
## 3214 5 20 1017 4|12 low Small-Large isolated
## 3215 5 20 1017 4|12 low Small-Large isolated
## 3216 5 20 1017 4|12 low Small-Large isolated
## 3217 6 24 1017 4|12 low Small-Large isolated
## 3218 6 24 1017 4|12 low Small-Large isolated
## 3219 6 24 1017 4|12 low Small-Large isolated
## 3220 6 24 1017 4|12 low Small-Large isolated
## 3221 6 24 1017 4|12 low Small-Large isolated
## 3222 6 24 1017 4|12 low Small-Large isolated
## 3223 6 24 1017 4|12 low Small-Large isolated
## 3224 6 24 1017 4|12 low Small-Large isolated
## 3225 6 24 1017 4|12 low Small-Large isolated
## mean_shannon mean_richness jaccard_index bray_curtis beta_spatial_turnover
## 1 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 4 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 5 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 6 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 7 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 8 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 9 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 10 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 11 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 12 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 13 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 14 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 15 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 16 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 17 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 18 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 19 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 20 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 21 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 22 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 23 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 24 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 25 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 26 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 27 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 28 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 29 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 30 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 31 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 32 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 33 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 34 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 35 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 36 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 37 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 38 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 39 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 40 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 41 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 42 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 43 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 44 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 45 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 46 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 47 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 48 1.5003642 7.5 0.3797327 0.2343643 0.1428571
## 49 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 50 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 51 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 52 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 53 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 54 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 55 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 56 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 57 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 58 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 59 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 60 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 61 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 62 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 63 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 64 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 65 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 66 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 67 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 68 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 69 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 70 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 71 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 72 1.5643953 8.0 0.5027346 0.3357686 0.1250000
## 73 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 74 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 75 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 76 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 77 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 78 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 79 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 80 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 81 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 82 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 83 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 84 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 85 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 86 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 87 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 88 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 89 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 90 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 91 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 92 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 93 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 94 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 95 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 96 1.6095690 6.0 0.8561835 0.7485323 0.0000000
## 97 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 98 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 99 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 100 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 101 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 102 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 103 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 104 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 105 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 106 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 107 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 108 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 109 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 110 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 111 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 112 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 113 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 114 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 115 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 116 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 117 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 118 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 119 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 120 1.8022460 7.5 0.4038401 0.2530073 0.1428571
## 121 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 122 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 123 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 124 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 125 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 126 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 127 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 128 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 129 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 130 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 131 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 132 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 133 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 134 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 135 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 136 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 137 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 138 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 139 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 140 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 141 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 142 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 143 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 144 0.9046531 4.0 0.8022244 0.6697618 0.0000000
## 145 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 146 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 147 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 148 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 149 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 150 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 151 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 152 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 153 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 154 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 155 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 156 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 157 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 158 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 159 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 160 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 161 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 162 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 163 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 164 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 165 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 166 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 167 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 168 1.1722772 6.0 0.8009542 0.6679930 0.4000000
## 169 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 170 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 171 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 172 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 173 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 174 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 175 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 176 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 177 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 178 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 179 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 180 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 181 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 182 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 183 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 184 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 185 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 186 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 187 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 188 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 189 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 190 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 191 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 192 0.9415572 5.5 0.9159832 0.8449899 0.0000000
## 193 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 194 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 195 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 196 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 197 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 198 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 199 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 200 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 201 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 202 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 203 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 204 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 205 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 206 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 207 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 208 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 209 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 210 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 211 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 212 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 213 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 214 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 215 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 216 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 217 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 218 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 219 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 220 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 221 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 222 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 223 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 224 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 225 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 226 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 227 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 228 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 229 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 230 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 231 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 232 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 233 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 234 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 235 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 236 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 237 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 238 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 239 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 240 1.7344675 8.0 0.5863882 0.4148156 0.0000000
## 241 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 242 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 243 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 244 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 245 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 246 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 247 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 248 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 249 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 250 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 251 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 252 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 253 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 254 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 255 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 256 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 257 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 258 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 259 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 260 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 261 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 262 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 263 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 264 1.4913521 6.5 0.4020438 0.2515988 0.0000000
## 265 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 266 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 267 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 268 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 269 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 270 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 271 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 272 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 273 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 274 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 275 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 276 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 277 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 278 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 279 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 280 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 281 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 282 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 283 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 284 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 285 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 286 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 287 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 288 1.5288340 6.0 0.9015342 0.8207213 0.2500000
## 289 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 290 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 291 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 292 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 293 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 294 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 295 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 296 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 297 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 298 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 299 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 300 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 301 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 302 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 303 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 304 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 305 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 306 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 307 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 308 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 309 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 310 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 311 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 312 1.5754616 6.0 0.5594016 0.3883120 0.2000000
## 313 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 314 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 315 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 316 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 317 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 318 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 319 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 320 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 321 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 322 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 323 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 324 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 325 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 326 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 327 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 328 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 329 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 330 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 331 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 332 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 333 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 334 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 335 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 336 1.1147692 5.0 0.7862454 0.6477795 0.0000000
## 337 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 338 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 339 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 340 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 341 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 342 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 343 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 344 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 345 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 346 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 347 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 348 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 349 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 350 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 351 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 352 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 353 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 354 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 355 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 356 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 357 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 358 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 359 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 360 1.2716771 6.0 0.7890579 0.6516066 0.2000000
## 361 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 362 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 363 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 364 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 365 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 366 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 367 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 368 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 369 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 370 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 371 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 372 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 373 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 374 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 375 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 376 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 377 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 378 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 379 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 380 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 381 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 382 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 383 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 384 1.0070034 4.5 0.9160517 0.8451064 0.5000000
## 385 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 386 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 387 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 388 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 389 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 390 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 391 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 392 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 393 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 394 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 395 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 396 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 397 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 398 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 399 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 400 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 401 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 402 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 403 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 404 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 405 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 406 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 407 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 408 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 409 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 410 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 411 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 412 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 413 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 414 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 415 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 416 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 417 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 418 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 419 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 420 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 421 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 422 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 423 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 424 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 425 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 426 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 427 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 428 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 429 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 430 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 431 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 432 1.6354094 8.0 0.5434531 0.3731106 0.1428571
## 433 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 434 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 435 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 436 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 437 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 438 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 439 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 440 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 441 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 442 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 443 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 444 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 445 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 446 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 447 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 448 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 449 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 450 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 451 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 452 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 453 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 454 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 455 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 456 1.7043816 8.5 0.4219277 0.2673691 0.1250000
## 457 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 458 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 459 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 460 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 461 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 462 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 463 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 464 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 465 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 466 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 467 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 468 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 469 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 470 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 471 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 472 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 473 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 474 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 475 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 476 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 477 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 478 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 479 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 480 1.6299430 6.5 0.8561835 0.7485323 0.0000000
## 481 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 482 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 483 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 484 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 485 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 486 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 487 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 488 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 489 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 490 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 491 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 492 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 493 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 494 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 495 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 496 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 497 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 498 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 499 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 500 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 501 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 502 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 503 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 504 1.7128054 7.0 0.5498951 0.3792106 0.2857143
## 505 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 506 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 507 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 508 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 509 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 510 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 511 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 512 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 513 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 514 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 515 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 516 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 517 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 518 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 519 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 520 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 521 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 522 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 523 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 524 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 525 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 526 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 527 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 528 0.9826256 4.0 0.8091603 0.6794872 0.0000000
## 529 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 530 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 531 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 532 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 533 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 534 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 535 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 536 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 537 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 538 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 539 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 540 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 541 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 542 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 543 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 544 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 545 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 546 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 547 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 548 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 549 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 550 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 551 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 552 1.1849855 6.5 0.7669141 0.6219470 0.2000000
## 553 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 554 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 555 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 556 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 557 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 558 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 559 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 560 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 561 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 562 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 563 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 564 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 565 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 566 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 567 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 568 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 569 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 570 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 571 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 572 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 573 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 574 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 575 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 576 0.8793394 4.5 0.9340896 0.8763303 0.0000000
## 577 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 578 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 579 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 580 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 581 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 582 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 583 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 584 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 585 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 586 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 587 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 588 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 589 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 590 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 591 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 592 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 593 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 594 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 595 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 596 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 597 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 598 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 599 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 600 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 601 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 602 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 603 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 604 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 605 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 606 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 607 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 608 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 609 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 610 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 611 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 612 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 613 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 614 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 615 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 616 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 617 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 618 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 619 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 620 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 621 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 622 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 623 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 624 1.5325570 7.0 0.6161471 0.4452403 0.2857143
## 625 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 626 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 627 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 628 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 629 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 630 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 631 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 632 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 633 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 634 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 635 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 636 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 637 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 638 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 639 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 640 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 641 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 642 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 643 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 644 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 645 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 646 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 647 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 648 1.5378489 8.0 0.5443405 0.3739477 0.1250000
## 649 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 650 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 651 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 652 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 653 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 654 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 655 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 656 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 657 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 658 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 659 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 660 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 661 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 662 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 663 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 664 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 665 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 666 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 667 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 668 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 669 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 670 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 671 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 672 1.2717353 5.0 0.8062622 0.6754098 0.0000000
## 673 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 674 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 675 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 676 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 677 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 678 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 679 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 680 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 681 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 682 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 683 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 684 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 685 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 686 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 687 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 688 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 689 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 690 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 691 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 692 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 693 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 694 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 695 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 696 1.5711195 6.5 0.5964585 0.4249668 0.5000000
## 697 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 698 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 699 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 700 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 701 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 702 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 703 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 704 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 705 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 706 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 707 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 708 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 709 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 710 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 711 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 712 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 713 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 714 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 715 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 716 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 717 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 718 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 719 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 720 0.9613777 3.5 0.7674121 0.6226024 0.5000000
## 721 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 722 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 723 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 724 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 725 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 726 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 727 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 728 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 729 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 730 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 731 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 732 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 733 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 734 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 735 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 736 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 737 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 738 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 739 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 740 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 741 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 742 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 743 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 744 1.3870793 5.5 0.6086957 0.4375000 0.6000000
## 745 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 746 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 747 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 748 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 749 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 750 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 751 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 752 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 753 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 754 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 755 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 756 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 757 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 758 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 759 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 760 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 761 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 762 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 763 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 764 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 765 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 766 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 767 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 768 0.9302665 3.5 0.6133333 0.4423077 0.0000000
## 769 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 770 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 771 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 772 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 773 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 774 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 775 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 776 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 777 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 778 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 779 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 780 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 781 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 782 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 783 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 784 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 785 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 786 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 787 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 788 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 789 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 790 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 791 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 792 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 793 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 794 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 795 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 796 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 797 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 798 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 799 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 800 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 801 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 802 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 803 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 804 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 805 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 806 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 807 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 808 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 809 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 810 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 811 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 812 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 813 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 814 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 815 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 816 1.7576182 8.0 0.6485050 0.4798427 0.0000000
## 817 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 818 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 819 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 820 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 821 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 822 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 823 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 824 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 825 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 826 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 827 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 828 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 829 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 830 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 831 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 832 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 833 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 834 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 835 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 836 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 837 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 838 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 839 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 840 1.6208829 7.5 0.5405548 0.3703838 0.1428571
## 841 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 842 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 843 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 844 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 845 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 846 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 847 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 848 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 849 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 850 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 851 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 852 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 853 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 854 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 855 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 856 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 857 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 858 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 859 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 860 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 861 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 862 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 863 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 864 1.5861251 6.0 0.8562784 0.7486772 0.0000000
## 865 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 866 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 867 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 868 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 869 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 870 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 871 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 872 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 873 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 874 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 875 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 876 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 877 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 878 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 879 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 880 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 881 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 882 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 883 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 884 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 885 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 886 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 887 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 888 1.6705149 7.5 0.5076640 0.3401808 0.1428571
## 889 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 890 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 891 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 892 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 893 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 894 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 895 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 896 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 897 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 898 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 899 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 900 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 901 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 902 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 903 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 904 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 905 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 906 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 907 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 908 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 909 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 910 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 911 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 912 1.1807457 5.0 0.8075314 0.6771930 0.0000000
## 913 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 914 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 915 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 916 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 917 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 918 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 919 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 920 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 921 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 922 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 923 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 924 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 925 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 926 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 927 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 928 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 929 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 930 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 931 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 932 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 933 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 934 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 935 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 936 1.5071598 6.5 0.8093303 0.6797269 0.2000000
## 937 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 938 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 939 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 940 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 941 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 942 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 943 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 944 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 945 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 946 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 947 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 948 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 949 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 950 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 951 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 952 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 953 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 954 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 955 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 956 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 957 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 958 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 959 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 960 0.9391687 5.0 0.9203269 0.8524125 0.0000000
## 961 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 962 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 963 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 964 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 965 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 966 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 967 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 968 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 969 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 970 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 971 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 972 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 973 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 974 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 975 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 976 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 977 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 978 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 979 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 980 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 981 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 982 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 983 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 984 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 985 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 986 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 987 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 988 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 989 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 990 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 991 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 992 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 993 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 994 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 995 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 996 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 997 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 998 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 999 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1000 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1001 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1002 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1003 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1004 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1005 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1006 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1007 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1008 1.5540186 8.0 0.4775502 0.3136722 0.2500000
## 1009 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1010 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1011 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1012 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1013 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1014 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1015 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1016 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1017 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1018 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1019 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1020 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1021 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1022 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1023 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1024 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1025 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1026 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1027 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1028 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1029 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1030 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1031 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1032 1.5213817 8.5 0.6802785 0.5154712 0.1250000
## 1033 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1034 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1035 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1036 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1037 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1038 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1039 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1040 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1041 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1042 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1043 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1044 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1045 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1046 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1047 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1048 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1049 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1050 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1051 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1052 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1053 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1054 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1055 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1056 1.7632593 7.0 0.4519279 0.2919295 0.0000000
## 1057 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1058 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1059 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1060 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1061 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1062 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1063 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1064 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1065 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1066 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1067 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1068 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1069 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1070 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1071 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1072 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1073 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1074 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1075 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1076 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1077 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1078 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1079 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1080 1.3837136 5.5 0.6129142 0.4418719 0.0000000
## 1081 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1082 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1083 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1084 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1085 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1086 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1087 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1088 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1089 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1090 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1091 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1092 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1093 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1094 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1095 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1096 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1097 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1098 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1099 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1100 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1101 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1102 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1103 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1104 1.1906786 4.5 0.9314463 0.8716887 0.3333333
## 1105 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1106 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1107 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1108 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1109 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1110 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1111 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1112 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1113 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1114 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1115 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1116 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1117 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1118 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1119 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1120 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1121 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1122 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1123 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1124 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1125 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1126 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1127 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1128 0.5580146 4.0 0.8940736 0.8084387 0.0000000
## 1129 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1130 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1131 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1132 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1133 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1134 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1135 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1136 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1137 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1138 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1139 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1140 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1141 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1142 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1143 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1144 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1145 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1146 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1147 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1148 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1149 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1150 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1151 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1152 0.6573424 5.0 0.9461440 0.8977925 0.0000000
## 1153 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1154 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1155 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1156 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1157 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1158 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1159 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1160 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1161 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1162 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1163 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1164 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1165 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1166 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1167 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1168 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1169 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1170 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1171 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1172 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1173 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1174 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1175 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1176 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1177 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1178 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1179 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1180 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1181 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1182 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1183 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1184 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1185 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1186 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1187 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1188 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1189 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1190 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1191 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1192 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1193 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1194 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1195 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1196 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1197 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1198 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1199 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1200 1.7881218 8.5 0.4851643 0.3202752 0.1250000
## 1201 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1202 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1203 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1204 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1205 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1206 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1207 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1208 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1209 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1210 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1211 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1212 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1213 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1214 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1215 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1216 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1217 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1218 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1219 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1220 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1221 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1222 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1223 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1224 1.4483385 7.0 0.6127187 0.4416686 0.0000000
## 1225 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1226 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1227 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1228 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1229 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1230 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1231 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1232 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1233 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1234 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1235 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1236 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1237 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1238 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1239 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1240 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1241 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1242 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1243 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1244 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1245 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1246 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1247 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1248 1.6825243 7.0 0.5191233 0.3505514 0.1666667
## 1249 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1250 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1251 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1252 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1253 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1254 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1255 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1256 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1257 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1258 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1259 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1260 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1261 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1262 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1263 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1264 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1265 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1266 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1267 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1268 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1269 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1270 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1271 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1272 1.1569293 4.0 0.7495992 0.5994872 0.3333333
## 1273 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1274 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1275 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1276 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1277 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1278 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1279 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1280 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1281 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1282 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1283 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1284 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1285 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1286 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1287 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1288 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1289 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1290 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1291 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1292 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1293 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1294 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1295 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1296 1.4007946 5.5 0.8509009 0.7404939 0.0000000
## 1297 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1298 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1299 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1300 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1301 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1302 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1303 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1304 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1305 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1306 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1307 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1308 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1309 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1310 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1311 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1312 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1313 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1314 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1315 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1316 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1317 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1318 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1319 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1320 0.6574145 4.0 0.8908058 0.8031107 0.0000000
## 1321 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1322 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1323 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1324 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1325 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1326 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1327 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1328 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1329 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1330 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1331 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1332 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1333 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1334 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1335 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1336 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1337 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1338 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1339 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1340 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1341 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1342 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1343 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1344 0.7227886 4.0 0.9301829 0.8694784 0.0000000
## 1345 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1346 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1347 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1348 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1349 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1350 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1351 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1352 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1353 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1354 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1355 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1356 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1357 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1358 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1359 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1360 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1361 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1362 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1363 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1364 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1365 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1366 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1367 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1368 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1369 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1370 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1371 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1372 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1373 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1374 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1375 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1376 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1377 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1378 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1379 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1380 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1381 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1382 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1383 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1384 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1385 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1386 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1387 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1388 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1389 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1390 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1391 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1392 1.6890637 8.5 0.5151939 0.3469772 0.1250000
## 1393 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1394 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1395 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1396 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1397 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1398 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1399 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1400 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1401 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1402 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1403 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1404 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1405 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1406 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1407 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1408 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1409 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1410 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1411 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1412 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1413 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1414 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1415 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1416 1.6613680 9.0 0.6067317 0.4354738 0.1111111
## 1417 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1418 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1419 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1420 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1421 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1422 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1423 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1424 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1425 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1426 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1427 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1428 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1429 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1430 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1431 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1432 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1433 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1434 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1435 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1436 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1437 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1438 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1439 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1440 1.7836333 7.5 0.5057999 0.3385088 0.0000000
## 1441 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1442 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1443 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1444 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1445 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1446 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1447 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1448 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1449 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1450 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1451 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1452 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1453 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1454 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1455 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1456 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1457 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1458 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1459 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1460 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1461 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1462 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1463 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1464 1.2942730 5.0 0.7453294 0.5940439 0.3333333
## 1465 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1466 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1467 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1468 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1469 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1470 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1471 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1472 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1473 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1474 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1475 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1476 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1477 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1478 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1479 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1480 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1481 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1482 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1483 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1484 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1485 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1486 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1487 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1488 1.2686511 4.5 0.9064490 0.8289043 0.3333333
## 1489 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1490 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1491 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1492 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1493 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1494 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1495 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1496 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1497 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1498 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1499 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1500 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1501 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1502 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1503 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1504 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1505 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1506 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1507 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1508 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1509 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1510 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1511 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1512 0.5707230 4.5 0.8832972 0.7909868 0.0000000
## 1513 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1514 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1515 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1516 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1517 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1518 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1519 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1520 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1521 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1522 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1523 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1524 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1525 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1526 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1527 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1528 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1529 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1530 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1531 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1532 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1533 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1534 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1535 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1536 0.5951247 4.0 0.9576002 0.9186497 0.0000000
## 1537 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1538 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1539 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1540 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1541 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1542 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1543 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1544 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1545 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1546 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1547 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1548 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1549 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1550 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1551 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1552 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1553 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1554 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1555 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1556 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1557 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1558 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1559 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1560 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1561 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1562 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1563 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1564 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1565 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1566 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1567 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1568 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1569 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1570 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1571 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1572 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1573 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1574 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1575 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1576 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1577 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1578 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1579 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1580 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1581 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1582 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1583 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1584 1.5862113 7.5 0.3935303 0.2449659 0.1428571
## 1585 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1586 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1587 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1588 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1589 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1590 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1591 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1592 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1593 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1594 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1595 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1596 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1597 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1598 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1599 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1600 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1601 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1602 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1603 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1604 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1605 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1606 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1607 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1608 1.4948352 8.5 0.6102781 0.4391368 0.1250000
## 1609 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1610 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1611 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1612 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1613 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1614 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1615 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1616 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1617 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1618 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1619 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1620 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1621 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1622 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1623 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1624 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1625 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1626 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1627 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1628 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1629 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1630 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1631 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1632 1.4254256 6.0 0.5077328 0.3402426 0.1666667
## 1633 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1634 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1635 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1636 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1637 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1638 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1639 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1640 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1641 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1642 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1643 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1644 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1645 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1646 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1647 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1648 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1649 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1650 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1651 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1652 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1653 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1654 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1655 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1656 1.1525871 4.5 0.7699053 0.6258911 0.6666667
## 1657 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1658 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1659 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1660 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1661 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1662 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1663 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1664 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1665 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1666 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1667 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1668 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1669 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1670 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1671 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1672 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1673 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1674 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1675 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1676 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1677 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1678 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1679 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1680 1.2474031 4.0 0.9374289 0.8822270 0.6666667
## 1681 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1682 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1683 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1684 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1685 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1686 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1687 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1688 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1689 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1690 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1691 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1692 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1693 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1694 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1695 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1696 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1697 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1698 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1699 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1700 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1701 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1702 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1703 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1704 0.7728167 3.5 0.7388350 0.5858353 0.0000000
## 1705 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1706 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1707 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1708 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1709 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1710 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1711 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1712 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1713 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1714 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1715 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1716 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1717 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1718 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1719 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1720 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1721 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1722 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1723 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1724 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1725 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1726 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1727 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1728 0.6460517 3.0 0.7497872 0.5997277 0.0000000
## 1729 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1730 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1731 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1732 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1733 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1734 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1735 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1736 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1737 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1738 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1739 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1740 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1741 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1742 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1743 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1744 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1745 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1746 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1747 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1748 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1749 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1750 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1751 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1752 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1753 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1754 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1755 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1756 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1757 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1758 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1759 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1760 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1761 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1762 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1763 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1764 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1765 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1766 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1767 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1768 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1769 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1770 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1771 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1772 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1773 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1774 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1775 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1776 1.8112725 8.5 0.5241108 0.3551153 0.0000000
## 1777 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1778 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1779 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1780 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1781 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1782 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1783 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1784 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1785 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1786 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1787 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1788 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1789 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1790 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1791 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1792 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1793 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1794 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1795 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1796 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1797 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1798 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1799 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1800 1.5778693 8.0 0.7006088 0.5391824 0.1428571
## 1801 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1802 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1803 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1804 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1805 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1806 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1807 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1808 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1809 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1810 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1811 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1812 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1813 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1814 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1815 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1816 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1817 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1818 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1819 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1820 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1821 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1822 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1823 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1824 1.7398154 7.0 0.4756098 0.3120000 0.0000000
## 1825 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1826 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1827 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1828 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1829 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1830 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1831 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1832 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1833 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1834 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1835 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1836 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1837 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1838 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1839 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1840 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1841 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1842 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1843 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1844 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1845 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1846 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1847 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1848 1.2519825 5.5 0.7460988 0.5950220 0.3333333
## 1849 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1850 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1851 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1852 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1853 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1854 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1855 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1856 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1857 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1858 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1859 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1860 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1861 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1862 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1863 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1864 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1865 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1866 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1867 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1868 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1869 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1870 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1871 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1872 1.4667712 5.5 0.9079875 0.8314808 0.3333333
## 1873 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1874 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1875 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1876 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1877 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1878 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1879 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1880 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1881 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1882 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1883 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1884 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1885 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1886 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1887 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1888 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1889 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1890 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1891 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1892 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1893 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1894 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1895 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1896 0.8928972 4.5 0.9027828 0.8227931 0.0000000
## 1897 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1898 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1899 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1900 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1901 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1902 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1903 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1904 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1905 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1906 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1907 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1908 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1909 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1910 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1911 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1912 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1913 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1914 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1915 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1916 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1917 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1918 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1919 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1920 0.6549539 4.5 0.9497693 0.9043436 0.0000000
## 1921 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1922 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1923 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1924 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1925 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1926 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1927 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1928 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1929 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1930 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1931 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1932 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1933 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1934 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1935 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1936 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1937 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1938 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1939 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1940 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1941 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1942 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1943 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1944 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 1945 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1946 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1947 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1948 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1949 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1950 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1951 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1952 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1953 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1954 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1955 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1956 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1957 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1958 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1959 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1960 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1961 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1962 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1963 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1964 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1965 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1966 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1967 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1968 1.4587022 7.0 0.4647482 0.3027179 0.0000000
## 1969 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1970 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1971 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1972 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1973 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1974 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1975 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1976 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1977 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1978 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1979 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1980 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1981 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1982 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1983 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1984 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1985 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1986 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1987 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1988 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1989 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1990 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1991 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1992 1.4635307 7.0 0.5222681 0.3534255 0.0000000
## 1993 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1994 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1995 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1996 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1997 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1998 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 1999 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2000 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2001 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2002 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2003 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2004 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2005 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2006 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2007 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2008 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2009 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2010 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2011 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2012 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2013 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2014 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2015 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2016 1.4969088 6.0 0.6928848 0.5300870 0.0000000
## 2017 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2018 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2019 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2020 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2021 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2022 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2023 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2024 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2025 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2026 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2027 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2028 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2029 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2030 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2031 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2032 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2033 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2034 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2035 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2036 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2037 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2038 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2039 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2040 1.4098276 6.0 0.6760997 0.5106878 0.2500000
## 2041 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2042 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2043 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2044 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2045 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2046 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2047 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2048 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2049 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2050 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2051 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2052 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2053 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2054 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2055 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2056 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2057 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2058 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2059 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2060 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2061 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2062 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2063 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2064 0.8677885 4.0 0.8623853 0.7580645 0.5000000
## 2065 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2066 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2067 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2068 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2069 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2070 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2071 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2072 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2073 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2074 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2075 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2076 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2077 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2078 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2079 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2080 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2081 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2082 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2083 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2084 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2085 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2086 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2087 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2088 1.0349319 5.0 0.8940736 0.8084387 0.0000000
## 2089 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2090 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2091 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2092 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2093 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2094 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2095 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2096 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2097 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2098 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2099 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2100 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2101 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2102 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2103 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2104 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2105 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2106 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2107 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2108 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2109 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2110 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2111 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2112 0.8886913 5.5 0.8939828 0.8082902 0.5000000
## 2113 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2114 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2115 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2116 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2117 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2118 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2119 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2120 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2121 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2122 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2123 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2124 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2125 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2126 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2127 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2128 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2129 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2130 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2131 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2132 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2133 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2134 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2135 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2136 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2137 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2138 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2139 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2140 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2141 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2142 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2143 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2144 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2145 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2146 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2147 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2148 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2149 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2150 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2151 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2152 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2153 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2154 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2155 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2156 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2157 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2158 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2159 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2160 1.6928054 7.5 0.5989357 0.4274862 0.1666667
## 2161 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2162 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2163 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2164 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2165 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2166 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2167 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2168 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2169 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2170 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2171 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2172 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2173 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2174 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2175 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2176 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2177 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2178 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2179 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2180 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2181 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2182 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2183 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2184 1.3904874 5.5 0.2931267 0.1717331 0.0000000
## 2185 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2186 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2187 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2188 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2189 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2190 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2191 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2192 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2193 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2194 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2195 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2196 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2197 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2198 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2199 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2200 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2201 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2202 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2203 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2204 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2205 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2206 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2207 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2208 1.4161738 6.0 0.5734298 0.4019640 0.0000000
## 2209 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2210 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2211 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2212 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2213 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2214 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2215 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2216 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2217 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2218 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2219 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2220 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2221 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2222 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2223 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2224 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2225 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2226 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2227 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2228 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2229 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2230 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2231 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2232 1.1830432 4.5 0.5461783 0.3756846 0.2500000
## 2233 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2234 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2235 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2236 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2237 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2238 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2239 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2240 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2241 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2242 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2243 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2244 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2245 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2246 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2247 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2248 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2249 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2250 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2251 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2252 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2253 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2254 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2255 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2256 1.0779045 5.0 0.8424721 0.7278202 0.0000000
## 2257 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2258 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2259 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2260 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2261 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2262 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2263 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2264 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2265 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2266 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2267 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2268 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2269 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2270 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2271 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2272 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2273 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2274 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2275 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2276 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2277 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2278 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2279 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2280 1.1343318 5.0 0.9128705 0.8397072 0.0000000
## 2281 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2282 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2283 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2284 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2285 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2286 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2287 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2288 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2289 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2290 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2291 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2292 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2293 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2294 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2295 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2296 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2297 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2298 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2299 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2300 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2301 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2302 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2303 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2304 0.9541375 4.5 0.8634686 0.7597403 0.5000000
## 2305 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2306 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2307 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2308 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2309 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2310 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2311 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2312 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2313 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2314 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2315 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2316 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2317 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2318 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2319 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2320 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2321 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2322 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2323 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2324 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2325 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2326 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2327 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2328 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2329 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2330 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2331 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2332 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2333 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2334 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2335 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2336 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2337 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2338 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2339 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2340 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2341 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2342 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2343 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2344 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2345 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2346 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2347 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2348 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2349 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2350 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2351 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2352 1.5937474 7.5 0.3858672 0.2390555 0.1666667
## 2353 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2354 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2355 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2356 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2357 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2358 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2359 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2360 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2361 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2362 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2363 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2364 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2365 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2366 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2367 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2368 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2369 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2370 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2371 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2372 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2373 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2374 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2375 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2376 1.6035169 7.5 0.3980177 0.2484533 0.0000000
## 2377 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2378 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2379 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2380 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2381 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2382 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2383 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2384 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2385 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2386 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2387 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2388 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2389 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2390 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2391 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2392 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2393 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2394 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2395 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2396 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2397 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2398 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2399 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2400 1.5172828 6.5 0.6578032 0.4900944 0.0000000
## 2401 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2402 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2403 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2404 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2405 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2406 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2407 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2408 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2409 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2410 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2411 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2412 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2413 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2414 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2415 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2416 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2417 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2418 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2419 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2420 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2421 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2422 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2423 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2424 1.3203870 5.5 0.5871069 0.4155353 0.2500000
## 2425 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2426 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2427 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2428 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2429 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2430 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2431 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2432 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2433 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2434 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2435 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2436 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2437 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2438 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2439 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2440 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2441 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2442 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2443 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2444 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2445 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2446 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2447 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2448 0.9457610 4.0 0.8813489 0.7878675 0.5000000
## 2449 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2450 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2451 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2452 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2453 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2454 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2455 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2456 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2457 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2458 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2459 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2460 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2461 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2462 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2463 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2464 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2465 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2466 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2467 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2468 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2469 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2470 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2471 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2472 1.0476403 5.5 0.8832972 0.7909868 0.0000000
## 2473 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2474 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2475 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2476 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2477 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2478 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2479 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2480 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2481 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2482 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2483 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2484 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2485 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2486 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2487 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2488 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2489 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2490 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2491 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2492 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2493 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2494 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2495 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2496 0.8264735 4.5 0.9161354 0.8452490 0.5000000
## 2497 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2498 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2499 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2500 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2501 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2502 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2503 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2504 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2505 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2506 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2507 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2508 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2509 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2510 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2511 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2512 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2513 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2514 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2515 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2516 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2517 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2518 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2519 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2520 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2521 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2522 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2523 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2524 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2525 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2526 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2527 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2528 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2529 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2530 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2531 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2532 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2533 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2534 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2535 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2536 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2537 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2538 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2539 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2540 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2541 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2542 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2543 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2544 1.4908950 6.5 0.4258033 0.2704892 0.0000000
## 2545 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2546 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2547 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2548 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2549 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2550 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2551 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2552 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2553 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2554 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2555 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2556 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2557 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2558 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2559 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2560 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2561 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2562 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2563 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2564 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2565 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2566 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2567 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2568 1.4369842 7.0 0.5152690 0.3470454 0.0000000
## 2569 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2570 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2571 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2572 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2573 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2574 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2575 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2576 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2577 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2578 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2579 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2580 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2581 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2582 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2583 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2584 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2585 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2586 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2587 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2588 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2589 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2590 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2591 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2592 1.1590750 5.0 0.3094595 0.1830536 0.2500000
## 2593 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2594 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2595 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2596 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2597 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2598 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2599 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2600 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2601 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2602 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2603 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2604 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2605 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2606 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2607 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2608 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2609 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2610 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2611 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2612 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2613 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2614 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2615 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2616 1.1787010 5.0 0.5881557 0.4165868 0.2500000
## 2617 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2618 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2619 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2620 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2621 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2622 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2623 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2624 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2625 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2626 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2627 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2628 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2629 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2630 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2631 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2632 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2633 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2634 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2635 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2636 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2637 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2638 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2639 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2640 0.9245130 3.5 0.8128693 0.6847345 0.5000000
## 2641 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2642 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2643 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2644 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2645 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2646 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2647 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2648 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2649 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2650 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2651 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2652 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2653 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2654 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2655 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2656 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2657 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2658 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2659 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2660 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2661 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2662 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2663 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2664 1.2497340 4.5 0.8109840 0.6820631 0.3333333
## 2665 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2666 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2667 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2668 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2669 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2670 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2671 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2672 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2673 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2674 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2675 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2676 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2677 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2678 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2679 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2680 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2681 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2682 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2683 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2684 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2685 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2686 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2687 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2688 0.8774006 3.5 0.7224848 0.5655391 0.5000000
## 2689 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2690 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2691 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2692 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2693 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2694 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2695 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2696 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2697 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2698 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2699 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2700 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2701 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2702 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2703 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2704 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2705 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2706 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2707 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2708 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2709 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2710 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2711 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2712 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2713 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2714 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2715 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2716 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2717 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2718 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2719 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2720 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2721 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2722 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2723 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2724 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2725 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2726 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2727 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2728 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2729 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2730 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2731 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2732 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2733 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2734 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2735 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2736 1.7159561 7.5 0.6949506 0.5325091 0.0000000
## 2737 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2738 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2739 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2740 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2741 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2742 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2743 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2744 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2745 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2746 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2747 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2748 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2749 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2750 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2751 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2752 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2753 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2754 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2755 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2756 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2757 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2758 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2759 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2760 1.5200182 6.5 0.4408897 0.2827829 0.0000000
## 2761 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2762 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2763 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2764 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2765 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2766 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2767 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2768 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2769 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2770 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2771 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2772 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2773 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2774 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2775 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2776 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2777 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2778 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2779 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2780 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2781 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2782 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2783 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2784 1.4734648 6.0 0.5394322 0.3693305 0.0000000
## 2785 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2786 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2787 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2788 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2789 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2790 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2791 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2792 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2793 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2794 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2795 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2796 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2797 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2798 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2799 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2800 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2801 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2802 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2803 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2804 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2805 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2806 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2807 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2808 1.2780964 6.0 0.5398773 0.3697479 0.2500000
## 2809 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2810 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2811 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2812 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2813 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2814 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2815 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2816 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2817 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2818 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2819 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2820 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2821 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2822 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2823 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2824 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2825 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2826 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2827 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2828 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2829 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2830 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2831 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2832 1.1438811 5.0 0.8833879 0.7911323 0.5000000
## 2833 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2834 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2835 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2836 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2837 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2838 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2839 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2840 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2841 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2842 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2843 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2844 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2845 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2846 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2847 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2848 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2849 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2850 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2851 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2852 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2853 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2854 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2855 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2856 1.3698145 5.5 0.9027828 0.8227931 0.0000000
## 2857 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2858 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2859 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2860 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2861 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2862 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2863 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2864 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2865 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2866 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2867 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2868 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2869 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2870 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2871 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2872 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2873 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2874 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2875 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2876 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2877 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2878 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2879 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2880 0.8863028 5.0 0.9009702 0.8197869 0.5000000
## 2881 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2882 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2883 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2884 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2885 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2886 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2887 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2888 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2889 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2890 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2891 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2892 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2893 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2894 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2895 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2896 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2897 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2898 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2899 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2900 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2901 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2902 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2903 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2904 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 2905 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2906 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2907 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2908 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2909 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2910 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2911 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2912 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2913 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2914 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2915 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2916 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2917 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2918 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2919 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2920 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2921 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2922 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2923 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2924 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2925 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2926 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2927 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2928 1.4093629 7.5 0.3571855 0.2174229 0.1428571
## 2929 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2930 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2931 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2932 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2933 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2934 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2935 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2936 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2937 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2938 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2939 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2940 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2941 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2942 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2943 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2944 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2945 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2946 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2947 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2948 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2949 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2950 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2951 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2952 1.5566020 8.0 0.4330945 0.2764012 0.2500000
## 2953 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2954 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2955 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2956 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2957 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2958 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2959 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2960 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2961 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2962 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2963 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2964 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2965 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2966 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2967 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2968 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2969 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2970 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2971 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2972 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2973 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2974 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2975 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2976 1.3271205 5.0 0.7095691 0.5498699 0.0000000
## 2977 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2978 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2979 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2980 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2981 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2982 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2983 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2984 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2985 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2986 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2987 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2988 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2989 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2990 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2991 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2992 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2993 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2994 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2995 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2996 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2997 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2998 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 2999 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 3000 1.4700682 6.0 0.5603006 0.3891789 0.0000000
## 3001 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3002 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3003 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3004 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3005 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3006 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3007 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3008 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3009 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3010 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3011 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3012 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3013 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3014 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3015 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3016 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3017 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3018 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3019 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3020 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3021 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3022 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3023 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3024 1.0940609 4.5 0.8165592 0.6899874 0.0000000
## 3025 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3026 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3027 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3028 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3029 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3030 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3031 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3032 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3033 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3034 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3035 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3036 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3037 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3038 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3039 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3040 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3041 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3042 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3043 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3044 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3045 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3046 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3047 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3048 0.8851120 4.5 0.9186702 0.8495744 0.5000000
## 3049 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3050 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3051 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3052 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3053 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3054 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3055 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3056 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3057 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3058 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3059 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3060 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3061 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3062 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3063 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3064 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3065 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3066 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3067 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3068 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3069 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3070 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3071 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3072 1.3912750 7.0 0.8836783 0.7915983 0.0000000
## 3073 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3074 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3075 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3076 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3077 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3078 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3079 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3080 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3081 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3082 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3083 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3084 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3085 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3086 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3087 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3088 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3089 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3090 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3091 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3092 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3093 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3094 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3095 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3096 2.0784670 11.0 0.0000000 0.0000000 0.0000000
## 3097 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3098 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3099 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3100 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3101 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3102 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3103 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3104 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3105 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3106 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3107 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3108 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3109 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3110 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3111 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3112 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3113 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3114 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3115 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3116 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3117 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3118 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3119 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3120 1.6434662 8.0 0.6412607 0.4719528 0.1428571
## 3121 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3122 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3123 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3124 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3125 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3126 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3127 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3128 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3129 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3130 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3131 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3132 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3133 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3134 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3135 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3136 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3137 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3138 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3139 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3140 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3141 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3142 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3143 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3144 1.4835587 6.5 0.3623978 0.2212978 0.0000000
## 3145 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3146 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3147 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3148 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3149 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3150 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3151 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3152 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3153 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3154 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3155 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3156 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3157 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3158 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3159 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3160 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3161 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3162 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3163 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3164 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3165 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3166 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3167 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3168 1.2463855 5.0 0.7793072 0.6384138 0.0000000
## 3169 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3170 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3171 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3172 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3173 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3174 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3175 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3176 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3177 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3178 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3179 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3180 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3181 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3182 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3183 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3184 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3185 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3186 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3187 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3188 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3189 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3190 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3191 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3192 1.2432838 4.5 0.6892984 0.5259003 0.2500000
## 3193 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3194 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3195 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3196 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3197 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3198 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3199 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3200 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3201 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3202 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3203 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3204 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3205 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3206 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3207 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3208 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3209 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3210 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3211 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3212 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3213 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3214 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3215 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3216 1.3041770 5.5 0.8280669 0.7065821 0.0000000
## 3217 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## 3218 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## 3219 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## 3220 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## 3221 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## 3222 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## 3223 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## 3224 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## 3225 0.9845120 4.5 0.8706428 0.7709188 0.0000000
## beta_nestedness beta_total metaecosystem_richness
## 1 0.00000000 0.00000000 11
## 2 0.00000000 0.00000000 11
## 3 0.00000000 0.00000000 11
## 4 0.00000000 0.00000000 11
## 5 0.00000000 0.00000000 11
## 6 0.00000000 0.00000000 11
## 7 0.00000000 0.00000000 11
## 8 0.00000000 0.00000000 11
## 9 0.00000000 0.00000000 11
## 10 0.00000000 0.00000000 11
## 11 0.00000000 0.00000000 11
## 12 0.00000000 0.00000000 11
## 13 0.00000000 0.00000000 11
## 14 0.00000000 0.00000000 11
## 15 0.00000000 0.00000000 11
## 16 0.00000000 0.00000000 11
## 17 0.00000000 0.00000000 11
## 18 0.00000000 0.00000000 11
## 19 0.00000000 0.00000000 11
## 20 0.00000000 0.00000000 11
## 21 0.00000000 0.00000000 11
## 22 0.00000000 0.00000000 11
## 23 0.00000000 0.00000000 11
## 24 0.00000000 0.00000000 11
## 25 0.05714286 0.20000000 9
## 26 0.05714286 0.20000000 9
## 27 0.05714286 0.20000000 9
## 28 0.05714286 0.20000000 9
## 29 0.05714286 0.20000000 9
## 30 0.05714286 0.20000000 9
## 31 0.05714286 0.20000000 9
## 32 0.05714286 0.20000000 9
## 33 0.05714286 0.20000000 9
## 34 0.05714286 0.20000000 9
## 35 0.05714286 0.20000000 9
## 36 0.05714286 0.20000000 9
## 37 0.05714286 0.20000000 9
## 38 0.05714286 0.20000000 9
## 39 0.05714286 0.20000000 9
## 40 0.05714286 0.20000000 9
## 41 0.05714286 0.20000000 9
## 42 0.05714286 0.20000000 9
## 43 0.05714286 0.20000000 9
## 44 0.05714286 0.20000000 9
## 45 0.05714286 0.20000000 9
## 46 0.05714286 0.20000000 9
## 47 0.05714286 0.20000000 9
## 48 0.05714286 0.20000000 9
## 49 0.00000000 0.12500000 9
## 50 0.00000000 0.12500000 9
## 51 0.00000000 0.12500000 9
## 52 0.00000000 0.12500000 9
## 53 0.00000000 0.12500000 9
## 54 0.00000000 0.12500000 9
## 55 0.00000000 0.12500000 9
## 56 0.00000000 0.12500000 9
## 57 0.00000000 0.12500000 9
## 58 0.00000000 0.12500000 9
## 59 0.00000000 0.12500000 9
## 60 0.00000000 0.12500000 9
## 61 0.00000000 0.12500000 9
## 62 0.00000000 0.12500000 9
## 63 0.00000000 0.12500000 9
## 64 0.00000000 0.12500000 9
## 65 0.00000000 0.12500000 9
## 66 0.00000000 0.12500000 9
## 67 0.00000000 0.12500000 9
## 68 0.00000000 0.12500000 9
## 69 0.00000000 0.12500000 9
## 70 0.00000000 0.12500000 9
## 71 0.00000000 0.12500000 9
## 72 0.00000000 0.12500000 9
## 73 0.33333333 0.33333333 8
## 74 0.33333333 0.33333333 8
## 75 0.33333333 0.33333333 8
## 76 0.33333333 0.33333333 8
## 77 0.33333333 0.33333333 8
## 78 0.33333333 0.33333333 8
## 79 0.33333333 0.33333333 8
## 80 0.33333333 0.33333333 8
## 81 0.33333333 0.33333333 8
## 82 0.33333333 0.33333333 8
## 83 0.33333333 0.33333333 8
## 84 0.33333333 0.33333333 8
## 85 0.33333333 0.33333333 8
## 86 0.33333333 0.33333333 8
## 87 0.33333333 0.33333333 8
## 88 0.33333333 0.33333333 8
## 89 0.33333333 0.33333333 8
## 90 0.33333333 0.33333333 8
## 91 0.33333333 0.33333333 8
## 92 0.33333333 0.33333333 8
## 93 0.33333333 0.33333333 8
## 94 0.33333333 0.33333333 8
## 95 0.33333333 0.33333333 8
## 96 0.33333333 0.33333333 8
## 97 0.05714286 0.20000000 9
## 98 0.05714286 0.20000000 9
## 99 0.05714286 0.20000000 9
## 100 0.05714286 0.20000000 9
## 101 0.05714286 0.20000000 9
## 102 0.05714286 0.20000000 9
## 103 0.05714286 0.20000000 9
## 104 0.05714286 0.20000000 9
## 105 0.05714286 0.20000000 9
## 106 0.05714286 0.20000000 9
## 107 0.05714286 0.20000000 9
## 108 0.05714286 0.20000000 9
## 109 0.05714286 0.20000000 9
## 110 0.05714286 0.20000000 9
## 111 0.05714286 0.20000000 9
## 112 0.05714286 0.20000000 9
## 113 0.05714286 0.20000000 9
## 114 0.05714286 0.20000000 9
## 115 0.05714286 0.20000000 9
## 116 0.05714286 0.20000000 9
## 117 0.05714286 0.20000000 9
## 118 0.05714286 0.20000000 9
## 119 0.05714286 0.20000000 9
## 120 0.05714286 0.20000000 9
## 121 0.50000000 0.50000000 6
## 122 0.50000000 0.50000000 6
## 123 0.50000000 0.50000000 6
## 124 0.50000000 0.50000000 6
## 125 0.50000000 0.50000000 6
## 126 0.50000000 0.50000000 6
## 127 0.50000000 0.50000000 6
## 128 0.50000000 0.50000000 6
## 129 0.50000000 0.50000000 6
## 130 0.50000000 0.50000000 6
## 131 0.50000000 0.50000000 6
## 132 0.50000000 0.50000000 6
## 133 0.50000000 0.50000000 6
## 134 0.50000000 0.50000000 6
## 135 0.50000000 0.50000000 6
## 136 0.50000000 0.50000000 6
## 137 0.50000000 0.50000000 6
## 138 0.50000000 0.50000000 6
## 139 0.50000000 0.50000000 6
## 140 0.50000000 0.50000000 6
## 141 0.50000000 0.50000000 6
## 142 0.50000000 0.50000000 6
## 143 0.50000000 0.50000000 6
## 144 0.50000000 0.50000000 6
## 145 0.10000000 0.50000000 9
## 146 0.10000000 0.50000000 9
## 147 0.10000000 0.50000000 9
## 148 0.10000000 0.50000000 9
## 149 0.10000000 0.50000000 9
## 150 0.10000000 0.50000000 9
## 151 0.10000000 0.50000000 9
## 152 0.10000000 0.50000000 9
## 153 0.10000000 0.50000000 9
## 154 0.10000000 0.50000000 9
## 155 0.10000000 0.50000000 9
## 156 0.10000000 0.50000000 9
## 157 0.10000000 0.50000000 9
## 158 0.10000000 0.50000000 9
## 159 0.10000000 0.50000000 9
## 160 0.10000000 0.50000000 9
## 161 0.10000000 0.50000000 9
## 162 0.10000000 0.50000000 9
## 163 0.10000000 0.50000000 9
## 164 0.10000000 0.50000000 9
## 165 0.10000000 0.50000000 9
## 166 0.10000000 0.50000000 9
## 167 0.10000000 0.50000000 9
## 168 0.10000000 0.50000000 9
## 169 0.63636364 0.63636364 9
## 170 0.63636364 0.63636364 9
## 171 0.63636364 0.63636364 9
## 172 0.63636364 0.63636364 9
## 173 0.63636364 0.63636364 9
## 174 0.63636364 0.63636364 9
## 175 0.63636364 0.63636364 9
## 176 0.63636364 0.63636364 9
## 177 0.63636364 0.63636364 9
## 178 0.63636364 0.63636364 9
## 179 0.63636364 0.63636364 9
## 180 0.63636364 0.63636364 9
## 181 0.63636364 0.63636364 9
## 182 0.63636364 0.63636364 9
## 183 0.63636364 0.63636364 9
## 184 0.63636364 0.63636364 9
## 185 0.63636364 0.63636364 9
## 186 0.63636364 0.63636364 9
## 187 0.63636364 0.63636364 9
## 188 0.63636364 0.63636364 9
## 189 0.63636364 0.63636364 9
## 190 0.63636364 0.63636364 9
## 191 0.63636364 0.63636364 9
## 192 0.63636364 0.63636364 9
## 193 0.00000000 0.00000000 11
## 194 0.00000000 0.00000000 11
## 195 0.00000000 0.00000000 11
## 196 0.00000000 0.00000000 11
## 197 0.00000000 0.00000000 11
## 198 0.00000000 0.00000000 11
## 199 0.00000000 0.00000000 11
## 200 0.00000000 0.00000000 11
## 201 0.00000000 0.00000000 11
## 202 0.00000000 0.00000000 11
## 203 0.00000000 0.00000000 11
## 204 0.00000000 0.00000000 11
## 205 0.00000000 0.00000000 11
## 206 0.00000000 0.00000000 11
## 207 0.00000000 0.00000000 11
## 208 0.00000000 0.00000000 11
## 209 0.00000000 0.00000000 11
## 210 0.00000000 0.00000000 11
## 211 0.00000000 0.00000000 11
## 212 0.00000000 0.00000000 11
## 213 0.00000000 0.00000000 11
## 214 0.00000000 0.00000000 11
## 215 0.00000000 0.00000000 11
## 216 0.00000000 0.00000000 11
## 217 0.12500000 0.12500000 9
## 218 0.12500000 0.12500000 9
## 219 0.12500000 0.12500000 9
## 220 0.12500000 0.12500000 9
## 221 0.12500000 0.12500000 9
## 222 0.12500000 0.12500000 9
## 223 0.12500000 0.12500000 9
## 224 0.12500000 0.12500000 9
## 225 0.12500000 0.12500000 9
## 226 0.12500000 0.12500000 9
## 227 0.12500000 0.12500000 9
## 228 0.12500000 0.12500000 9
## 229 0.12500000 0.12500000 9
## 230 0.12500000 0.12500000 9
## 231 0.12500000 0.12500000 9
## 232 0.12500000 0.12500000 9
## 233 0.12500000 0.12500000 9
## 234 0.12500000 0.12500000 9
## 235 0.12500000 0.12500000 9
## 236 0.12500000 0.12500000 9
## 237 0.12500000 0.12500000 9
## 238 0.12500000 0.12500000 9
## 239 0.12500000 0.12500000 9
## 240 0.12500000 0.12500000 9
## 241 0.23076923 0.23076923 8
## 242 0.23076923 0.23076923 8
## 243 0.23076923 0.23076923 8
## 244 0.23076923 0.23076923 8
## 245 0.23076923 0.23076923 8
## 246 0.23076923 0.23076923 8
## 247 0.23076923 0.23076923 8
## 248 0.23076923 0.23076923 8
## 249 0.23076923 0.23076923 8
## 250 0.23076923 0.23076923 8
## 251 0.23076923 0.23076923 8
## 252 0.23076923 0.23076923 8
## 253 0.23076923 0.23076923 8
## 254 0.23076923 0.23076923 8
## 255 0.23076923 0.23076923 8
## 256 0.23076923 0.23076923 8
## 257 0.23076923 0.23076923 8
## 258 0.23076923 0.23076923 8
## 259 0.23076923 0.23076923 8
## 260 0.23076923 0.23076923 8
## 261 0.23076923 0.23076923 8
## 262 0.23076923 0.23076923 8
## 263 0.23076923 0.23076923 8
## 264 0.23076923 0.23076923 8
## 265 0.25000000 0.50000000 9
## 266 0.25000000 0.50000000 9
## 267 0.25000000 0.50000000 9
## 268 0.25000000 0.50000000 9
## 269 0.25000000 0.50000000 9
## 270 0.25000000 0.50000000 9
## 271 0.25000000 0.50000000 9
## 272 0.25000000 0.50000000 9
## 273 0.25000000 0.50000000 9
## 274 0.25000000 0.50000000 9
## 275 0.25000000 0.50000000 9
## 276 0.25000000 0.50000000 9
## 277 0.25000000 0.50000000 9
## 278 0.25000000 0.50000000 9
## 279 0.25000000 0.50000000 9
## 280 0.25000000 0.50000000 9
## 281 0.25000000 0.50000000 9
## 282 0.25000000 0.50000000 9
## 283 0.25000000 0.50000000 9
## 284 0.25000000 0.50000000 9
## 285 0.25000000 0.50000000 9
## 286 0.25000000 0.50000000 9
## 287 0.25000000 0.50000000 9
## 288 0.25000000 0.50000000 9
## 289 0.13333333 0.33333333 8
## 290 0.13333333 0.33333333 8
## 291 0.13333333 0.33333333 8
## 292 0.13333333 0.33333333 8
## 293 0.13333333 0.33333333 8
## 294 0.13333333 0.33333333 8
## 295 0.13333333 0.33333333 8
## 296 0.13333333 0.33333333 8
## 297 0.13333333 0.33333333 8
## 298 0.13333333 0.33333333 8
## 299 0.13333333 0.33333333 8
## 300 0.13333333 0.33333333 8
## 301 0.13333333 0.33333333 8
## 302 0.13333333 0.33333333 8
## 303 0.13333333 0.33333333 8
## 304 0.13333333 0.33333333 8
## 305 0.13333333 0.33333333 8
## 306 0.13333333 0.33333333 8
## 307 0.13333333 0.33333333 8
## 308 0.13333333 0.33333333 8
## 309 0.13333333 0.33333333 8
## 310 0.13333333 0.33333333 8
## 311 0.13333333 0.33333333 8
## 312 0.13333333 0.33333333 8
## 313 0.60000000 0.60000000 8
## 314 0.60000000 0.60000000 8
## 315 0.60000000 0.60000000 8
## 316 0.60000000 0.60000000 8
## 317 0.60000000 0.60000000 8
## 318 0.60000000 0.60000000 8
## 319 0.60000000 0.60000000 8
## 320 0.60000000 0.60000000 8
## 321 0.60000000 0.60000000 8
## 322 0.60000000 0.60000000 8
## 323 0.60000000 0.60000000 8
## 324 0.60000000 0.60000000 8
## 325 0.60000000 0.60000000 8
## 326 0.60000000 0.60000000 8
## 327 0.60000000 0.60000000 8
## 328 0.60000000 0.60000000 8
## 329 0.60000000 0.60000000 8
## 330 0.60000000 0.60000000 8
## 331 0.60000000 0.60000000 8
## 332 0.60000000 0.60000000 8
## 333 0.60000000 0.60000000 8
## 334 0.60000000 0.60000000 8
## 335 0.60000000 0.60000000 8
## 336 0.60000000 0.60000000 8
## 337 0.13333333 0.33333333 8
## 338 0.13333333 0.33333333 8
## 339 0.13333333 0.33333333 8
## 340 0.13333333 0.33333333 8
## 341 0.13333333 0.33333333 8
## 342 0.13333333 0.33333333 8
## 343 0.13333333 0.33333333 8
## 344 0.13333333 0.33333333 8
## 345 0.13333333 0.33333333 8
## 346 0.13333333 0.33333333 8
## 347 0.13333333 0.33333333 8
## 348 0.13333333 0.33333333 8
## 349 0.13333333 0.33333333 8
## 350 0.13333333 0.33333333 8
## 351 0.13333333 0.33333333 8
## 352 0.13333333 0.33333333 8
## 353 0.13333333 0.33333333 8
## 354 0.13333333 0.33333333 8
## 355 0.13333333 0.33333333 8
## 356 0.13333333 0.33333333 8
## 357 0.13333333 0.33333333 8
## 358 0.13333333 0.33333333 8
## 359 0.13333333 0.33333333 8
## 360 0.13333333 0.33333333 8
## 361 0.27777778 0.77777778 8
## 362 0.27777778 0.77777778 8
## 363 0.27777778 0.77777778 8
## 364 0.27777778 0.77777778 8
## 365 0.27777778 0.77777778 8
## 366 0.27777778 0.77777778 8
## 367 0.27777778 0.77777778 8
## 368 0.27777778 0.77777778 8
## 369 0.27777778 0.77777778 8
## 370 0.27777778 0.77777778 8
## 371 0.27777778 0.77777778 8
## 372 0.27777778 0.77777778 8
## 373 0.27777778 0.77777778 8
## 374 0.27777778 0.77777778 8
## 375 0.27777778 0.77777778 8
## 376 0.27777778 0.77777778 8
## 377 0.27777778 0.77777778 8
## 378 0.27777778 0.77777778 8
## 379 0.27777778 0.77777778 8
## 380 0.27777778 0.77777778 8
## 381 0.27777778 0.77777778 8
## 382 0.27777778 0.77777778 8
## 383 0.27777778 0.77777778 8
## 384 0.27777778 0.77777778 8
## 385 0.00000000 0.00000000 11
## 386 0.00000000 0.00000000 11
## 387 0.00000000 0.00000000 11
## 388 0.00000000 0.00000000 11
## 389 0.00000000 0.00000000 11
## 390 0.00000000 0.00000000 11
## 391 0.00000000 0.00000000 11
## 392 0.00000000 0.00000000 11
## 393 0.00000000 0.00000000 11
## 394 0.00000000 0.00000000 11
## 395 0.00000000 0.00000000 11
## 396 0.00000000 0.00000000 11
## 397 0.00000000 0.00000000 11
## 398 0.00000000 0.00000000 11
## 399 0.00000000 0.00000000 11
## 400 0.00000000 0.00000000 11
## 401 0.00000000 0.00000000 11
## 402 0.00000000 0.00000000 11
## 403 0.00000000 0.00000000 11
## 404 0.00000000 0.00000000 11
## 405 0.00000000 0.00000000 11
## 406 0.00000000 0.00000000 11
## 407 0.00000000 0.00000000 11
## 408 0.00000000 0.00000000 11
## 409 0.10714286 0.25000000 10
## 410 0.10714286 0.25000000 10
## 411 0.10714286 0.25000000 10
## 412 0.10714286 0.25000000 10
## 413 0.10714286 0.25000000 10
## 414 0.10714286 0.25000000 10
## 415 0.10714286 0.25000000 10
## 416 0.10714286 0.25000000 10
## 417 0.10714286 0.25000000 10
## 418 0.10714286 0.25000000 10
## 419 0.10714286 0.25000000 10
## 420 0.10714286 0.25000000 10
## 421 0.10714286 0.25000000 10
## 422 0.10714286 0.25000000 10
## 423 0.10714286 0.25000000 10
## 424 0.10714286 0.25000000 10
## 425 0.10714286 0.25000000 10
## 426 0.10714286 0.25000000 10
## 427 0.10714286 0.25000000 10
## 428 0.10714286 0.25000000 10
## 429 0.10714286 0.25000000 10
## 430 0.10714286 0.25000000 10
## 431 0.10714286 0.25000000 10
## 432 0.10714286 0.25000000 10
## 433 0.05147059 0.17647059 10
## 434 0.05147059 0.17647059 10
## 435 0.05147059 0.17647059 10
## 436 0.05147059 0.17647059 10
## 437 0.05147059 0.17647059 10
## 438 0.05147059 0.17647059 10
## 439 0.05147059 0.17647059 10
## 440 0.05147059 0.17647059 10
## 441 0.05147059 0.17647059 10
## 442 0.05147059 0.17647059 10
## 443 0.05147059 0.17647059 10
## 444 0.05147059 0.17647059 10
## 445 0.05147059 0.17647059 10
## 446 0.05147059 0.17647059 10
## 447 0.05147059 0.17647059 10
## 448 0.05147059 0.17647059 10
## 449 0.05147059 0.17647059 10
## 450 0.05147059 0.17647059 10
## 451 0.05147059 0.17647059 10
## 452 0.05147059 0.17647059 10
## 453 0.05147059 0.17647059 10
## 454 0.05147059 0.17647059 10
## 455 0.05147059 0.17647059 10
## 456 0.05147059 0.17647059 10
## 457 0.38461538 0.38461538 9
## 458 0.38461538 0.38461538 9
## 459 0.38461538 0.38461538 9
## 460 0.38461538 0.38461538 9
## 461 0.38461538 0.38461538 9
## 462 0.38461538 0.38461538 9
## 463 0.38461538 0.38461538 9
## 464 0.38461538 0.38461538 9
## 465 0.38461538 0.38461538 9
## 466 0.38461538 0.38461538 9
## 467 0.38461538 0.38461538 9
## 468 0.38461538 0.38461538 9
## 469 0.38461538 0.38461538 9
## 470 0.38461538 0.38461538 9
## 471 0.38461538 0.38461538 9
## 472 0.38461538 0.38461538 9
## 473 0.38461538 0.38461538 9
## 474 0.38461538 0.38461538 9
## 475 0.38461538 0.38461538 9
## 476 0.38461538 0.38461538 9
## 477 0.38461538 0.38461538 9
## 478 0.38461538 0.38461538 9
## 479 0.38461538 0.38461538 9
## 480 0.38461538 0.38461538 9
## 481 0.00000000 0.28571429 9
## 482 0.00000000 0.28571429 9
## 483 0.00000000 0.28571429 9
## 484 0.00000000 0.28571429 9
## 485 0.00000000 0.28571429 9
## 486 0.00000000 0.28571429 9
## 487 0.00000000 0.28571429 9
## 488 0.00000000 0.28571429 9
## 489 0.00000000 0.28571429 9
## 490 0.00000000 0.28571429 9
## 491 0.00000000 0.28571429 9
## 492 0.00000000 0.28571429 9
## 493 0.00000000 0.28571429 9
## 494 0.00000000 0.28571429 9
## 495 0.00000000 0.28571429 9
## 496 0.00000000 0.28571429 9
## 497 0.00000000 0.28571429 9
## 498 0.00000000 0.28571429 9
## 499 0.00000000 0.28571429 9
## 500 0.00000000 0.28571429 9
## 501 0.00000000 0.28571429 9
## 502 0.00000000 0.28571429 9
## 503 0.00000000 0.28571429 9
## 504 0.00000000 0.28571429 9
## 505 0.50000000 0.50000000 6
## 506 0.50000000 0.50000000 6
## 507 0.50000000 0.50000000 6
## 508 0.50000000 0.50000000 6
## 509 0.50000000 0.50000000 6
## 510 0.50000000 0.50000000 6
## 511 0.50000000 0.50000000 6
## 512 0.50000000 0.50000000 6
## 513 0.50000000 0.50000000 6
## 514 0.50000000 0.50000000 6
## 515 0.50000000 0.50000000 6
## 516 0.50000000 0.50000000 6
## 517 0.50000000 0.50000000 6
## 518 0.50000000 0.50000000 6
## 519 0.50000000 0.50000000 6
## 520 0.50000000 0.50000000 6
## 521 0.50000000 0.50000000 6
## 522 0.50000000 0.50000000 6
## 523 0.50000000 0.50000000 6
## 524 0.50000000 0.50000000 6
## 525 0.50000000 0.50000000 6
## 526 0.50000000 0.50000000 6
## 527 0.50000000 0.50000000 6
## 528 0.50000000 0.50000000 6
## 529 0.18461538 0.38461538 9
## 530 0.18461538 0.38461538 9
## 531 0.18461538 0.38461538 9
## 532 0.18461538 0.38461538 9
## 533 0.18461538 0.38461538 9
## 534 0.18461538 0.38461538 9
## 535 0.18461538 0.38461538 9
## 536 0.18461538 0.38461538 9
## 537 0.18461538 0.38461538 9
## 538 0.18461538 0.38461538 9
## 539 0.18461538 0.38461538 9
## 540 0.18461538 0.38461538 9
## 541 0.18461538 0.38461538 9
## 542 0.18461538 0.38461538 9
## 543 0.18461538 0.38461538 9
## 544 0.18461538 0.38461538 9
## 545 0.18461538 0.38461538 9
## 546 0.18461538 0.38461538 9
## 547 0.18461538 0.38461538 9
## 548 0.18461538 0.38461538 9
## 549 0.18461538 0.38461538 9
## 550 0.18461538 0.38461538 9
## 551 0.18461538 0.38461538 9
## 552 0.18461538 0.38461538 9
## 553 0.55555556 0.55555556 7
## 554 0.55555556 0.55555556 7
## 555 0.55555556 0.55555556 7
## 556 0.55555556 0.55555556 7
## 557 0.55555556 0.55555556 7
## 558 0.55555556 0.55555556 7
## 559 0.55555556 0.55555556 7
## 560 0.55555556 0.55555556 7
## 561 0.55555556 0.55555556 7
## 562 0.55555556 0.55555556 7
## 563 0.55555556 0.55555556 7
## 564 0.55555556 0.55555556 7
## 565 0.55555556 0.55555556 7
## 566 0.55555556 0.55555556 7
## 567 0.55555556 0.55555556 7
## 568 0.55555556 0.55555556 7
## 569 0.55555556 0.55555556 7
## 570 0.55555556 0.55555556 7
## 571 0.55555556 0.55555556 7
## 572 0.55555556 0.55555556 7
## 573 0.55555556 0.55555556 7
## 574 0.55555556 0.55555556 7
## 575 0.55555556 0.55555556 7
## 576 0.55555556 0.55555556 7
## 577 0.00000000 0.00000000 11
## 578 0.00000000 0.00000000 11
## 579 0.00000000 0.00000000 11
## 580 0.00000000 0.00000000 11
## 581 0.00000000 0.00000000 11
## 582 0.00000000 0.00000000 11
## 583 0.00000000 0.00000000 11
## 584 0.00000000 0.00000000 11
## 585 0.00000000 0.00000000 11
## 586 0.00000000 0.00000000 11
## 587 0.00000000 0.00000000 11
## 588 0.00000000 0.00000000 11
## 589 0.00000000 0.00000000 11
## 590 0.00000000 0.00000000 11
## 591 0.00000000 0.00000000 11
## 592 0.00000000 0.00000000 11
## 593 0.00000000 0.00000000 11
## 594 0.00000000 0.00000000 11
## 595 0.00000000 0.00000000 11
## 596 0.00000000 0.00000000 11
## 597 0.00000000 0.00000000 11
## 598 0.00000000 0.00000000 11
## 599 0.00000000 0.00000000 11
## 600 0.00000000 0.00000000 11
## 601 0.00000000 0.28571429 9
## 602 0.00000000 0.28571429 9
## 603 0.00000000 0.28571429 9
## 604 0.00000000 0.28571429 9
## 605 0.00000000 0.28571429 9
## 606 0.00000000 0.28571429 9
## 607 0.00000000 0.28571429 9
## 608 0.00000000 0.28571429 9
## 609 0.00000000 0.28571429 9
## 610 0.00000000 0.28571429 9
## 611 0.00000000 0.28571429 9
## 612 0.00000000 0.28571429 9
## 613 0.00000000 0.28571429 9
## 614 0.00000000 0.28571429 9
## 615 0.00000000 0.28571429 9
## 616 0.00000000 0.28571429 9
## 617 0.00000000 0.28571429 9
## 618 0.00000000 0.28571429 9
## 619 0.00000000 0.28571429 9
## 620 0.00000000 0.28571429 9
## 621 0.00000000 0.28571429 9
## 622 0.00000000 0.28571429 9
## 623 0.00000000 0.28571429 9
## 624 0.00000000 0.28571429 9
## 625 0.00000000 0.12500000 9
## 626 0.00000000 0.12500000 9
## 627 0.00000000 0.12500000 9
## 628 0.00000000 0.12500000 9
## 629 0.00000000 0.12500000 9
## 630 0.00000000 0.12500000 9
## 631 0.00000000 0.12500000 9
## 632 0.00000000 0.12500000 9
## 633 0.00000000 0.12500000 9
## 634 0.00000000 0.12500000 9
## 635 0.00000000 0.12500000 9
## 636 0.00000000 0.12500000 9
## 637 0.00000000 0.12500000 9
## 638 0.00000000 0.12500000 9
## 639 0.00000000 0.12500000 9
## 640 0.00000000 0.12500000 9
## 641 0.00000000 0.12500000 9
## 642 0.00000000 0.12500000 9
## 643 0.00000000 0.12500000 9
## 644 0.00000000 0.12500000 9
## 645 0.00000000 0.12500000 9
## 646 0.00000000 0.12500000 9
## 647 0.00000000 0.12500000 9
## 648 0.00000000 0.12500000 9
## 649 0.20000000 0.20000000 6
## 650 0.20000000 0.20000000 6
## 651 0.20000000 0.20000000 6
## 652 0.20000000 0.20000000 6
## 653 0.20000000 0.20000000 6
## 654 0.20000000 0.20000000 6
## 655 0.20000000 0.20000000 6
## 656 0.20000000 0.20000000 6
## 657 0.20000000 0.20000000 6
## 658 0.20000000 0.20000000 6
## 659 0.20000000 0.20000000 6
## 660 0.20000000 0.20000000 6
## 661 0.20000000 0.20000000 6
## 662 0.20000000 0.20000000 6
## 663 0.20000000 0.20000000 6
## 664 0.20000000 0.20000000 6
## 665 0.20000000 0.20000000 6
## 666 0.20000000 0.20000000 6
## 667 0.20000000 0.20000000 6
## 668 0.20000000 0.20000000 6
## 669 0.20000000 0.20000000 6
## 670 0.20000000 0.20000000 6
## 671 0.20000000 0.20000000 6
## 672 0.20000000 0.20000000 6
## 673 0.03846154 0.53846154 10
## 674 0.03846154 0.53846154 10
## 675 0.03846154 0.53846154 10
## 676 0.03846154 0.53846154 10
## 677 0.03846154 0.53846154 10
## 678 0.03846154 0.53846154 10
## 679 0.03846154 0.53846154 10
## 680 0.03846154 0.53846154 10
## 681 0.03846154 0.53846154 10
## 682 0.03846154 0.53846154 10
## 683 0.03846154 0.53846154 10
## 684 0.03846154 0.53846154 10
## 685 0.03846154 0.53846154 10
## 686 0.03846154 0.53846154 10
## 687 0.03846154 0.53846154 10
## 688 0.03846154 0.53846154 10
## 689 0.03846154 0.53846154 10
## 690 0.03846154 0.53846154 10
## 691 0.03846154 0.53846154 10
## 692 0.03846154 0.53846154 10
## 693 0.03846154 0.53846154 10
## 694 0.03846154 0.53846154 10
## 695 0.03846154 0.53846154 10
## 696 0.03846154 0.53846154 10
## 697 0.21428571 0.71428571 6
## 698 0.21428571 0.71428571 6
## 699 0.21428571 0.71428571 6
## 700 0.21428571 0.71428571 6
## 701 0.21428571 0.71428571 6
## 702 0.21428571 0.71428571 6
## 703 0.21428571 0.71428571 6
## 704 0.21428571 0.71428571 6
## 705 0.21428571 0.71428571 6
## 706 0.21428571 0.71428571 6
## 707 0.21428571 0.71428571 6
## 708 0.21428571 0.71428571 6
## 709 0.21428571 0.71428571 6
## 710 0.21428571 0.71428571 6
## 711 0.21428571 0.71428571 6
## 712 0.21428571 0.71428571 6
## 713 0.21428571 0.71428571 6
## 714 0.21428571 0.71428571 6
## 715 0.21428571 0.71428571 6
## 716 0.21428571 0.71428571 6
## 717 0.21428571 0.71428571 6
## 718 0.21428571 0.71428571 6
## 719 0.21428571 0.71428571 6
## 720 0.21428571 0.71428571 6
## 721 0.03636364 0.63636364 9
## 722 0.03636364 0.63636364 9
## 723 0.03636364 0.63636364 9
## 724 0.03636364 0.63636364 9
## 725 0.03636364 0.63636364 9
## 726 0.03636364 0.63636364 9
## 727 0.03636364 0.63636364 9
## 728 0.03636364 0.63636364 9
## 729 0.03636364 0.63636364 9
## 730 0.03636364 0.63636364 9
## 731 0.03636364 0.63636364 9
## 732 0.03636364 0.63636364 9
## 733 0.03636364 0.63636364 9
## 734 0.03636364 0.63636364 9
## 735 0.03636364 0.63636364 9
## 736 0.03636364 0.63636364 9
## 737 0.03636364 0.63636364 9
## 738 0.03636364 0.63636364 9
## 739 0.03636364 0.63636364 9
## 740 0.03636364 0.63636364 9
## 741 0.03636364 0.63636364 9
## 742 0.03636364 0.63636364 9
## 743 0.03636364 0.63636364 9
## 744 0.03636364 0.63636364 9
## 745 0.42857143 0.42857143 5
## 746 0.42857143 0.42857143 5
## 747 0.42857143 0.42857143 5
## 748 0.42857143 0.42857143 5
## 749 0.42857143 0.42857143 5
## 750 0.42857143 0.42857143 5
## 751 0.42857143 0.42857143 5
## 752 0.42857143 0.42857143 5
## 753 0.42857143 0.42857143 5
## 754 0.42857143 0.42857143 5
## 755 0.42857143 0.42857143 5
## 756 0.42857143 0.42857143 5
## 757 0.42857143 0.42857143 5
## 758 0.42857143 0.42857143 5
## 759 0.42857143 0.42857143 5
## 760 0.42857143 0.42857143 5
## 761 0.42857143 0.42857143 5
## 762 0.42857143 0.42857143 5
## 763 0.42857143 0.42857143 5
## 764 0.42857143 0.42857143 5
## 765 0.42857143 0.42857143 5
## 766 0.42857143 0.42857143 5
## 767 0.42857143 0.42857143 5
## 768 0.42857143 0.42857143 5
## 769 0.00000000 0.00000000 11
## 770 0.00000000 0.00000000 11
## 771 0.00000000 0.00000000 11
## 772 0.00000000 0.00000000 11
## 773 0.00000000 0.00000000 11
## 774 0.00000000 0.00000000 11
## 775 0.00000000 0.00000000 11
## 776 0.00000000 0.00000000 11
## 777 0.00000000 0.00000000 11
## 778 0.00000000 0.00000000 11
## 779 0.00000000 0.00000000 11
## 780 0.00000000 0.00000000 11
## 781 0.00000000 0.00000000 11
## 782 0.00000000 0.00000000 11
## 783 0.00000000 0.00000000 11
## 784 0.00000000 0.00000000 11
## 785 0.00000000 0.00000000 11
## 786 0.00000000 0.00000000 11
## 787 0.00000000 0.00000000 11
## 788 0.00000000 0.00000000 11
## 789 0.00000000 0.00000000 11
## 790 0.00000000 0.00000000 11
## 791 0.00000000 0.00000000 11
## 792 0.00000000 0.00000000 11
## 793 0.12500000 0.12500000 9
## 794 0.12500000 0.12500000 9
## 795 0.12500000 0.12500000 9
## 796 0.12500000 0.12500000 9
## 797 0.12500000 0.12500000 9
## 798 0.12500000 0.12500000 9
## 799 0.12500000 0.12500000 9
## 800 0.12500000 0.12500000 9
## 801 0.12500000 0.12500000 9
## 802 0.12500000 0.12500000 9
## 803 0.12500000 0.12500000 9
## 804 0.12500000 0.12500000 9
## 805 0.12500000 0.12500000 9
## 806 0.12500000 0.12500000 9
## 807 0.12500000 0.12500000 9
## 808 0.12500000 0.12500000 9
## 809 0.12500000 0.12500000 9
## 810 0.12500000 0.12500000 9
## 811 0.12500000 0.12500000 9
## 812 0.12500000 0.12500000 9
## 813 0.12500000 0.12500000 9
## 814 0.12500000 0.12500000 9
## 815 0.12500000 0.12500000 9
## 816 0.12500000 0.12500000 9
## 817 0.05714286 0.20000000 9
## 818 0.05714286 0.20000000 9
## 819 0.05714286 0.20000000 9
## 820 0.05714286 0.20000000 9
## 821 0.05714286 0.20000000 9
## 822 0.05714286 0.20000000 9
## 823 0.05714286 0.20000000 9
## 824 0.05714286 0.20000000 9
## 825 0.05714286 0.20000000 9
## 826 0.05714286 0.20000000 9
## 827 0.05714286 0.20000000 9
## 828 0.05714286 0.20000000 9
## 829 0.05714286 0.20000000 9
## 830 0.05714286 0.20000000 9
## 831 0.05714286 0.20000000 9
## 832 0.05714286 0.20000000 9
## 833 0.05714286 0.20000000 9
## 834 0.05714286 0.20000000 9
## 835 0.05714286 0.20000000 9
## 836 0.05714286 0.20000000 9
## 837 0.05714286 0.20000000 9
## 838 0.05714286 0.20000000 9
## 839 0.05714286 0.20000000 9
## 840 0.05714286 0.20000000 9
## 841 0.33333333 0.33333333 8
## 842 0.33333333 0.33333333 8
## 843 0.33333333 0.33333333 8
## 844 0.33333333 0.33333333 8
## 845 0.33333333 0.33333333 8
## 846 0.33333333 0.33333333 8
## 847 0.33333333 0.33333333 8
## 848 0.33333333 0.33333333 8
## 849 0.33333333 0.33333333 8
## 850 0.33333333 0.33333333 8
## 851 0.33333333 0.33333333 8
## 852 0.33333333 0.33333333 8
## 853 0.33333333 0.33333333 8
## 854 0.33333333 0.33333333 8
## 855 0.33333333 0.33333333 8
## 856 0.33333333 0.33333333 8
## 857 0.33333333 0.33333333 8
## 858 0.33333333 0.33333333 8
## 859 0.33333333 0.33333333 8
## 860 0.33333333 0.33333333 8
## 861 0.33333333 0.33333333 8
## 862 0.33333333 0.33333333 8
## 863 0.33333333 0.33333333 8
## 864 0.33333333 0.33333333 8
## 865 0.05714286 0.20000000 9
## 866 0.05714286 0.20000000 9
## 867 0.05714286 0.20000000 9
## 868 0.05714286 0.20000000 9
## 869 0.05714286 0.20000000 9
## 870 0.05714286 0.20000000 9
## 871 0.05714286 0.20000000 9
## 872 0.05714286 0.20000000 9
## 873 0.05714286 0.20000000 9
## 874 0.05714286 0.20000000 9
## 875 0.05714286 0.20000000 9
## 876 0.05714286 0.20000000 9
## 877 0.05714286 0.20000000 9
## 878 0.05714286 0.20000000 9
## 879 0.05714286 0.20000000 9
## 880 0.05714286 0.20000000 9
## 881 0.05714286 0.20000000 9
## 882 0.05714286 0.20000000 9
## 883 0.05714286 0.20000000 9
## 884 0.05714286 0.20000000 9
## 885 0.05714286 0.20000000 9
## 886 0.05714286 0.20000000 9
## 887 0.05714286 0.20000000 9
## 888 0.05714286 0.20000000 9
## 889 0.60000000 0.60000000 8
## 890 0.60000000 0.60000000 8
## 891 0.60000000 0.60000000 8
## 892 0.60000000 0.60000000 8
## 893 0.60000000 0.60000000 8
## 894 0.60000000 0.60000000 8
## 895 0.60000000 0.60000000 8
## 896 0.60000000 0.60000000 8
## 897 0.60000000 0.60000000 8
## 898 0.60000000 0.60000000 8
## 899 0.60000000 0.60000000 8
## 900 0.60000000 0.60000000 8
## 901 0.60000000 0.60000000 8
## 902 0.60000000 0.60000000 8
## 903 0.60000000 0.60000000 8
## 904 0.60000000 0.60000000 8
## 905 0.60000000 0.60000000 8
## 906 0.60000000 0.60000000 8
## 907 0.60000000 0.60000000 8
## 908 0.60000000 0.60000000 8
## 909 0.60000000 0.60000000 8
## 910 0.60000000 0.60000000 8
## 911 0.60000000 0.60000000 8
## 912 0.60000000 0.60000000 8
## 913 0.18461538 0.38461538 9
## 914 0.18461538 0.38461538 9
## 915 0.18461538 0.38461538 9
## 916 0.18461538 0.38461538 9
## 917 0.18461538 0.38461538 9
## 918 0.18461538 0.38461538 9
## 919 0.18461538 0.38461538 9
## 920 0.18461538 0.38461538 9
## 921 0.18461538 0.38461538 9
## 922 0.18461538 0.38461538 9
## 923 0.18461538 0.38461538 9
## 924 0.18461538 0.38461538 9
## 925 0.18461538 0.38461538 9
## 926 0.18461538 0.38461538 9
## 927 0.18461538 0.38461538 9
## 928 0.18461538 0.38461538 9
## 929 0.18461538 0.38461538 9
## 930 0.18461538 0.38461538 9
## 931 0.18461538 0.38461538 9
## 932 0.18461538 0.38461538 9
## 933 0.18461538 0.38461538 9
## 934 0.18461538 0.38461538 9
## 935 0.18461538 0.38461538 9
## 936 0.18461538 0.38461538 9
## 937 0.60000000 0.60000000 8
## 938 0.60000000 0.60000000 8
## 939 0.60000000 0.60000000 8
## 940 0.60000000 0.60000000 8
## 941 0.60000000 0.60000000 8
## 942 0.60000000 0.60000000 8
## 943 0.60000000 0.60000000 8
## 944 0.60000000 0.60000000 8
## 945 0.60000000 0.60000000 8
## 946 0.60000000 0.60000000 8
## 947 0.60000000 0.60000000 8
## 948 0.60000000 0.60000000 8
## 949 0.60000000 0.60000000 8
## 950 0.60000000 0.60000000 8
## 951 0.60000000 0.60000000 8
## 952 0.60000000 0.60000000 8
## 953 0.60000000 0.60000000 8
## 954 0.60000000 0.60000000 8
## 955 0.60000000 0.60000000 8
## 956 0.60000000 0.60000000 8
## 957 0.60000000 0.60000000 8
## 958 0.60000000 0.60000000 8
## 959 0.60000000 0.60000000 8
## 960 0.60000000 0.60000000 8
## 961 0.00000000 0.00000000 11
## 962 0.00000000 0.00000000 11
## 963 0.00000000 0.00000000 11
## 964 0.00000000 0.00000000 11
## 965 0.00000000 0.00000000 11
## 966 0.00000000 0.00000000 11
## 967 0.00000000 0.00000000 11
## 968 0.00000000 0.00000000 11
## 969 0.00000000 0.00000000 11
## 970 0.00000000 0.00000000 11
## 971 0.00000000 0.00000000 11
## 972 0.00000000 0.00000000 11
## 973 0.00000000 0.00000000 11
## 974 0.00000000 0.00000000 11
## 975 0.00000000 0.00000000 11
## 976 0.00000000 0.00000000 11
## 977 0.00000000 0.00000000 11
## 978 0.00000000 0.00000000 11
## 979 0.00000000 0.00000000 11
## 980 0.00000000 0.00000000 11
## 981 0.00000000 0.00000000 11
## 982 0.00000000 0.00000000 11
## 983 0.00000000 0.00000000 11
## 984 0.00000000 0.00000000 11
## 985 0.00000000 0.25000000 10
## 986 0.00000000 0.25000000 10
## 987 0.00000000 0.25000000 10
## 988 0.00000000 0.25000000 10
## 989 0.00000000 0.25000000 10
## 990 0.00000000 0.25000000 10
## 991 0.00000000 0.25000000 10
## 992 0.00000000 0.25000000 10
## 993 0.00000000 0.25000000 10
## 994 0.00000000 0.25000000 10
## 995 0.00000000 0.25000000 10
## 996 0.00000000 0.25000000 10
## 997 0.00000000 0.25000000 10
## 998 0.00000000 0.25000000 10
## 999 0.00000000 0.25000000 10
## 1000 0.00000000 0.25000000 10
## 1001 0.00000000 0.25000000 10
## 1002 0.00000000 0.25000000 10
## 1003 0.00000000 0.25000000 10
## 1004 0.00000000 0.25000000 10
## 1005 0.00000000 0.25000000 10
## 1006 0.00000000 0.25000000 10
## 1007 0.00000000 0.25000000 10
## 1008 0.00000000 0.25000000 10
## 1009 0.05147059 0.17647059 10
## 1010 0.05147059 0.17647059 10
## 1011 0.05147059 0.17647059 10
## 1012 0.05147059 0.17647059 10
## 1013 0.05147059 0.17647059 10
## 1014 0.05147059 0.17647059 10
## 1015 0.05147059 0.17647059 10
## 1016 0.05147059 0.17647059 10
## 1017 0.05147059 0.17647059 10
## 1018 0.05147059 0.17647059 10
## 1019 0.05147059 0.17647059 10
## 1020 0.05147059 0.17647059 10
## 1021 0.05147059 0.17647059 10
## 1022 0.05147059 0.17647059 10
## 1023 0.05147059 0.17647059 10
## 1024 0.05147059 0.17647059 10
## 1025 0.05147059 0.17647059 10
## 1026 0.05147059 0.17647059 10
## 1027 0.05147059 0.17647059 10
## 1028 0.05147059 0.17647059 10
## 1029 0.05147059 0.17647059 10
## 1030 0.05147059 0.17647059 10
## 1031 0.05147059 0.17647059 10
## 1032 0.05147059 0.17647059 10
## 1033 0.14285714 0.14285714 8
## 1034 0.14285714 0.14285714 8
## 1035 0.14285714 0.14285714 8
## 1036 0.14285714 0.14285714 8
## 1037 0.14285714 0.14285714 8
## 1038 0.14285714 0.14285714 8
## 1039 0.14285714 0.14285714 8
## 1040 0.14285714 0.14285714 8
## 1041 0.14285714 0.14285714 8
## 1042 0.14285714 0.14285714 8
## 1043 0.14285714 0.14285714 8
## 1044 0.14285714 0.14285714 8
## 1045 0.14285714 0.14285714 8
## 1046 0.14285714 0.14285714 8
## 1047 0.14285714 0.14285714 8
## 1048 0.14285714 0.14285714 8
## 1049 0.14285714 0.14285714 8
## 1050 0.14285714 0.14285714 8
## 1051 0.14285714 0.14285714 8
## 1052 0.14285714 0.14285714 8
## 1053 0.14285714 0.14285714 8
## 1054 0.14285714 0.14285714 8
## 1055 0.14285714 0.14285714 8
## 1056 0.14285714 0.14285714 8
## 1057 0.45454545 0.45454545 8
## 1058 0.45454545 0.45454545 8
## 1059 0.45454545 0.45454545 8
## 1060 0.45454545 0.45454545 8
## 1061 0.45454545 0.45454545 8
## 1062 0.45454545 0.45454545 8
## 1063 0.45454545 0.45454545 8
## 1064 0.45454545 0.45454545 8
## 1065 0.45454545 0.45454545 8
## 1066 0.45454545 0.45454545 8
## 1067 0.45454545 0.45454545 8
## 1068 0.45454545 0.45454545 8
## 1069 0.45454545 0.45454545 8
## 1070 0.45454545 0.45454545 8
## 1071 0.45454545 0.45454545 8
## 1072 0.45454545 0.45454545 8
## 1073 0.45454545 0.45454545 8
## 1074 0.45454545 0.45454545 8
## 1075 0.45454545 0.45454545 8
## 1076 0.45454545 0.45454545 8
## 1077 0.45454545 0.45454545 8
## 1078 0.45454545 0.45454545 8
## 1079 0.45454545 0.45454545 8
## 1080 0.45454545 0.45454545 8
## 1081 0.22222222 0.55555556 7
## 1082 0.22222222 0.55555556 7
## 1083 0.22222222 0.55555556 7
## 1084 0.22222222 0.55555556 7
## 1085 0.22222222 0.55555556 7
## 1086 0.22222222 0.55555556 7
## 1087 0.22222222 0.55555556 7
## 1088 0.22222222 0.55555556 7
## 1089 0.22222222 0.55555556 7
## 1090 0.22222222 0.55555556 7
## 1091 0.22222222 0.55555556 7
## 1092 0.22222222 0.55555556 7
## 1093 0.22222222 0.55555556 7
## 1094 0.22222222 0.55555556 7
## 1095 0.22222222 0.55555556 7
## 1096 0.22222222 0.55555556 7
## 1097 0.22222222 0.55555556 7
## 1098 0.22222222 0.55555556 7
## 1099 0.22222222 0.55555556 7
## 1100 0.22222222 0.55555556 7
## 1101 0.22222222 0.55555556 7
## 1102 0.22222222 0.55555556 7
## 1103 0.22222222 0.55555556 7
## 1104 0.22222222 0.55555556 7
## 1105 0.75000000 0.75000000 7
## 1106 0.75000000 0.75000000 7
## 1107 0.75000000 0.75000000 7
## 1108 0.75000000 0.75000000 7
## 1109 0.75000000 0.75000000 7
## 1110 0.75000000 0.75000000 7
## 1111 0.75000000 0.75000000 7
## 1112 0.75000000 0.75000000 7
## 1113 0.75000000 0.75000000 7
## 1114 0.75000000 0.75000000 7
## 1115 0.75000000 0.75000000 7
## 1116 0.75000000 0.75000000 7
## 1117 0.75000000 0.75000000 7
## 1118 0.75000000 0.75000000 7
## 1119 0.75000000 0.75000000 7
## 1120 0.75000000 0.75000000 7
## 1121 0.75000000 0.75000000 7
## 1122 0.75000000 0.75000000 7
## 1123 0.75000000 0.75000000 7
## 1124 0.75000000 0.75000000 7
## 1125 0.75000000 0.75000000 7
## 1126 0.75000000 0.75000000 7
## 1127 0.75000000 0.75000000 7
## 1128 0.75000000 0.75000000 7
## 1129 0.80000000 0.80000000 9
## 1130 0.80000000 0.80000000 9
## 1131 0.80000000 0.80000000 9
## 1132 0.80000000 0.80000000 9
## 1133 0.80000000 0.80000000 9
## 1134 0.80000000 0.80000000 9
## 1135 0.80000000 0.80000000 9
## 1136 0.80000000 0.80000000 9
## 1137 0.80000000 0.80000000 9
## 1138 0.80000000 0.80000000 9
## 1139 0.80000000 0.80000000 9
## 1140 0.80000000 0.80000000 9
## 1141 0.80000000 0.80000000 9
## 1142 0.80000000 0.80000000 9
## 1143 0.80000000 0.80000000 9
## 1144 0.80000000 0.80000000 9
## 1145 0.80000000 0.80000000 9
## 1146 0.80000000 0.80000000 9
## 1147 0.80000000 0.80000000 9
## 1148 0.80000000 0.80000000 9
## 1149 0.80000000 0.80000000 9
## 1150 0.80000000 0.80000000 9
## 1151 0.80000000 0.80000000 9
## 1152 0.80000000 0.80000000 9
## 1153 0.00000000 0.00000000 11
## 1154 0.00000000 0.00000000 11
## 1155 0.00000000 0.00000000 11
## 1156 0.00000000 0.00000000 11
## 1157 0.00000000 0.00000000 11
## 1158 0.00000000 0.00000000 11
## 1159 0.00000000 0.00000000 11
## 1160 0.00000000 0.00000000 11
## 1161 0.00000000 0.00000000 11
## 1162 0.00000000 0.00000000 11
## 1163 0.00000000 0.00000000 11
## 1164 0.00000000 0.00000000 11
## 1165 0.00000000 0.00000000 11
## 1166 0.00000000 0.00000000 11
## 1167 0.00000000 0.00000000 11
## 1168 0.00000000 0.00000000 11
## 1169 0.00000000 0.00000000 11
## 1170 0.00000000 0.00000000 11
## 1171 0.00000000 0.00000000 11
## 1172 0.00000000 0.00000000 11
## 1173 0.00000000 0.00000000 11
## 1174 0.00000000 0.00000000 11
## 1175 0.00000000 0.00000000 11
## 1176 0.00000000 0.00000000 11
## 1177 0.05147059 0.17647059 10
## 1178 0.05147059 0.17647059 10
## 1179 0.05147059 0.17647059 10
## 1180 0.05147059 0.17647059 10
## 1181 0.05147059 0.17647059 10
## 1182 0.05147059 0.17647059 10
## 1183 0.05147059 0.17647059 10
## 1184 0.05147059 0.17647059 10
## 1185 0.05147059 0.17647059 10
## 1186 0.05147059 0.17647059 10
## 1187 0.05147059 0.17647059 10
## 1188 0.05147059 0.17647059 10
## 1189 0.05147059 0.17647059 10
## 1190 0.05147059 0.17647059 10
## 1191 0.05147059 0.17647059 10
## 1192 0.05147059 0.17647059 10
## 1193 0.05147059 0.17647059 10
## 1194 0.05147059 0.17647059 10
## 1195 0.05147059 0.17647059 10
## 1196 0.05147059 0.17647059 10
## 1197 0.05147059 0.17647059 10
## 1198 0.05147059 0.17647059 10
## 1199 0.05147059 0.17647059 10
## 1200 0.05147059 0.17647059 10
## 1201 0.28571429 0.28571429 9
## 1202 0.28571429 0.28571429 9
## 1203 0.28571429 0.28571429 9
## 1204 0.28571429 0.28571429 9
## 1205 0.28571429 0.28571429 9
## 1206 0.28571429 0.28571429 9
## 1207 0.28571429 0.28571429 9
## 1208 0.28571429 0.28571429 9
## 1209 0.28571429 0.28571429 9
## 1210 0.28571429 0.28571429 9
## 1211 0.28571429 0.28571429 9
## 1212 0.28571429 0.28571429 9
## 1213 0.28571429 0.28571429 9
## 1214 0.28571429 0.28571429 9
## 1215 0.28571429 0.28571429 9
## 1216 0.28571429 0.28571429 9
## 1217 0.28571429 0.28571429 9
## 1218 0.28571429 0.28571429 9
## 1219 0.28571429 0.28571429 9
## 1220 0.28571429 0.28571429 9
## 1221 0.28571429 0.28571429 9
## 1222 0.28571429 0.28571429 9
## 1223 0.28571429 0.28571429 9
## 1224 0.28571429 0.28571429 9
## 1225 0.11904762 0.28571429 9
## 1226 0.11904762 0.28571429 9
## 1227 0.11904762 0.28571429 9
## 1228 0.11904762 0.28571429 9
## 1229 0.11904762 0.28571429 9
## 1230 0.11904762 0.28571429 9
## 1231 0.11904762 0.28571429 9
## 1232 0.11904762 0.28571429 9
## 1233 0.11904762 0.28571429 9
## 1234 0.11904762 0.28571429 9
## 1235 0.11904762 0.28571429 9
## 1236 0.11904762 0.28571429 9
## 1237 0.11904762 0.28571429 9
## 1238 0.11904762 0.28571429 9
## 1239 0.11904762 0.28571429 9
## 1240 0.11904762 0.28571429 9
## 1241 0.11904762 0.28571429 9
## 1242 0.11904762 0.28571429 9
## 1243 0.11904762 0.28571429 9
## 1244 0.11904762 0.28571429 9
## 1245 0.11904762 0.28571429 9
## 1246 0.11904762 0.28571429 9
## 1247 0.11904762 0.28571429 9
## 1248 0.11904762 0.28571429 9
## 1249 0.16666667 0.50000000 6
## 1250 0.16666667 0.50000000 6
## 1251 0.16666667 0.50000000 6
## 1252 0.16666667 0.50000000 6
## 1253 0.16666667 0.50000000 6
## 1254 0.16666667 0.50000000 6
## 1255 0.16666667 0.50000000 6
## 1256 0.16666667 0.50000000 6
## 1257 0.16666667 0.50000000 6
## 1258 0.16666667 0.50000000 6
## 1259 0.16666667 0.50000000 6
## 1260 0.16666667 0.50000000 6
## 1261 0.16666667 0.50000000 6
## 1262 0.16666667 0.50000000 6
## 1263 0.16666667 0.50000000 6
## 1264 0.16666667 0.50000000 6
## 1265 0.16666667 0.50000000 6
## 1266 0.16666667 0.50000000 6
## 1267 0.16666667 0.50000000 6
## 1268 0.16666667 0.50000000 6
## 1269 0.16666667 0.50000000 6
## 1270 0.16666667 0.50000000 6
## 1271 0.16666667 0.50000000 6
## 1272 0.16666667 0.50000000 6
## 1273 0.45454545 0.45454545 8
## 1274 0.45454545 0.45454545 8
## 1275 0.45454545 0.45454545 8
## 1276 0.45454545 0.45454545 8
## 1277 0.45454545 0.45454545 8
## 1278 0.45454545 0.45454545 8
## 1279 0.45454545 0.45454545 8
## 1280 0.45454545 0.45454545 8
## 1281 0.45454545 0.45454545 8
## 1282 0.45454545 0.45454545 8
## 1283 0.45454545 0.45454545 8
## 1284 0.45454545 0.45454545 8
## 1285 0.45454545 0.45454545 8
## 1286 0.45454545 0.45454545 8
## 1287 0.45454545 0.45454545 8
## 1288 0.45454545 0.45454545 8
## 1289 0.45454545 0.45454545 8
## 1290 0.45454545 0.45454545 8
## 1291 0.45454545 0.45454545 8
## 1292 0.45454545 0.45454545 8
## 1293 0.45454545 0.45454545 8
## 1294 0.45454545 0.45454545 8
## 1295 0.45454545 0.45454545 8
## 1296 0.45454545 0.45454545 8
## 1297 0.75000000 0.75000000 7
## 1298 0.75000000 0.75000000 7
## 1299 0.75000000 0.75000000 7
## 1300 0.75000000 0.75000000 7
## 1301 0.75000000 0.75000000 7
## 1302 0.75000000 0.75000000 7
## 1303 0.75000000 0.75000000 7
## 1304 0.75000000 0.75000000 7
## 1305 0.75000000 0.75000000 7
## 1306 0.75000000 0.75000000 7
## 1307 0.75000000 0.75000000 7
## 1308 0.75000000 0.75000000 7
## 1309 0.75000000 0.75000000 7
## 1310 0.75000000 0.75000000 7
## 1311 0.75000000 0.75000000 7
## 1312 0.75000000 0.75000000 7
## 1313 0.75000000 0.75000000 7
## 1314 0.75000000 0.75000000 7
## 1315 0.75000000 0.75000000 7
## 1316 0.75000000 0.75000000 7
## 1317 0.75000000 0.75000000 7
## 1318 0.75000000 0.75000000 7
## 1319 0.75000000 0.75000000 7
## 1320 0.75000000 0.75000000 7
## 1321 0.75000000 0.75000000 7
## 1322 0.75000000 0.75000000 7
## 1323 0.75000000 0.75000000 7
## 1324 0.75000000 0.75000000 7
## 1325 0.75000000 0.75000000 7
## 1326 0.75000000 0.75000000 7
## 1327 0.75000000 0.75000000 7
## 1328 0.75000000 0.75000000 7
## 1329 0.75000000 0.75000000 7
## 1330 0.75000000 0.75000000 7
## 1331 0.75000000 0.75000000 7
## 1332 0.75000000 0.75000000 7
## 1333 0.75000000 0.75000000 7
## 1334 0.75000000 0.75000000 7
## 1335 0.75000000 0.75000000 7
## 1336 0.75000000 0.75000000 7
## 1337 0.75000000 0.75000000 7
## 1338 0.75000000 0.75000000 7
## 1339 0.75000000 0.75000000 7
## 1340 0.75000000 0.75000000 7
## 1341 0.75000000 0.75000000 7
## 1342 0.75000000 0.75000000 7
## 1343 0.75000000 0.75000000 7
## 1344 0.75000000 0.75000000 7
## 1345 0.00000000 0.00000000 11
## 1346 0.00000000 0.00000000 11
## 1347 0.00000000 0.00000000 11
## 1348 0.00000000 0.00000000 11
## 1349 0.00000000 0.00000000 11
## 1350 0.00000000 0.00000000 11
## 1351 0.00000000 0.00000000 11
## 1352 0.00000000 0.00000000 11
## 1353 0.00000000 0.00000000 11
## 1354 0.00000000 0.00000000 11
## 1355 0.00000000 0.00000000 11
## 1356 0.00000000 0.00000000 11
## 1357 0.00000000 0.00000000 11
## 1358 0.00000000 0.00000000 11
## 1359 0.00000000 0.00000000 11
## 1360 0.00000000 0.00000000 11
## 1361 0.00000000 0.00000000 11
## 1362 0.00000000 0.00000000 11
## 1363 0.00000000 0.00000000 11
## 1364 0.00000000 0.00000000 11
## 1365 0.00000000 0.00000000 11
## 1366 0.00000000 0.00000000 11
## 1367 0.00000000 0.00000000 11
## 1368 0.00000000 0.00000000 11
## 1369 0.05147059 0.17647059 10
## 1370 0.05147059 0.17647059 10
## 1371 0.05147059 0.17647059 10
## 1372 0.05147059 0.17647059 10
## 1373 0.05147059 0.17647059 10
## 1374 0.05147059 0.17647059 10
## 1375 0.05147059 0.17647059 10
## 1376 0.05147059 0.17647059 10
## 1377 0.05147059 0.17647059 10
## 1378 0.05147059 0.17647059 10
## 1379 0.05147059 0.17647059 10
## 1380 0.05147059 0.17647059 10
## 1381 0.05147059 0.17647059 10
## 1382 0.05147059 0.17647059 10
## 1383 0.05147059 0.17647059 10
## 1384 0.05147059 0.17647059 10
## 1385 0.05147059 0.17647059 10
## 1386 0.05147059 0.17647059 10
## 1387 0.05147059 0.17647059 10
## 1388 0.05147059 0.17647059 10
## 1389 0.05147059 0.17647059 10
## 1390 0.05147059 0.17647059 10
## 1391 0.05147059 0.17647059 10
## 1392 0.05147059 0.17647059 10
## 1393 0.00000000 0.11111111 10
## 1394 0.00000000 0.11111111 10
## 1395 0.00000000 0.11111111 10
## 1396 0.00000000 0.11111111 10
## 1397 0.00000000 0.11111111 10
## 1398 0.00000000 0.11111111 10
## 1399 0.00000000 0.11111111 10
## 1400 0.00000000 0.11111111 10
## 1401 0.00000000 0.11111111 10
## 1402 0.00000000 0.11111111 10
## 1403 0.00000000 0.11111111 10
## 1404 0.00000000 0.11111111 10
## 1405 0.00000000 0.11111111 10
## 1406 0.00000000 0.11111111 10
## 1407 0.00000000 0.11111111 10
## 1408 0.00000000 0.11111111 10
## 1409 0.00000000 0.11111111 10
## 1410 0.00000000 0.11111111 10
## 1411 0.00000000 0.11111111 10
## 1412 0.00000000 0.11111111 10
## 1413 0.00000000 0.11111111 10
## 1414 0.00000000 0.11111111 10
## 1415 0.00000000 0.11111111 10
## 1416 0.00000000 0.11111111 10
## 1417 0.20000000 0.20000000 9
## 1418 0.20000000 0.20000000 9
## 1419 0.20000000 0.20000000 9
## 1420 0.20000000 0.20000000 9
## 1421 0.20000000 0.20000000 9
## 1422 0.20000000 0.20000000 9
## 1423 0.20000000 0.20000000 9
## 1424 0.20000000 0.20000000 9
## 1425 0.20000000 0.20000000 9
## 1426 0.20000000 0.20000000 9
## 1427 0.20000000 0.20000000 9
## 1428 0.20000000 0.20000000 9
## 1429 0.20000000 0.20000000 9
## 1430 0.20000000 0.20000000 9
## 1431 0.20000000 0.20000000 9
## 1432 0.20000000 0.20000000 9
## 1433 0.20000000 0.20000000 9
## 1434 0.20000000 0.20000000 9
## 1435 0.20000000 0.20000000 9
## 1436 0.20000000 0.20000000 9
## 1437 0.20000000 0.20000000 9
## 1438 0.20000000 0.20000000 9
## 1439 0.20000000 0.20000000 9
## 1440 0.20000000 0.20000000 9
## 1441 0.26666667 0.60000000 8
## 1442 0.26666667 0.60000000 8
## 1443 0.26666667 0.60000000 8
## 1444 0.26666667 0.60000000 8
## 1445 0.26666667 0.60000000 8
## 1446 0.26666667 0.60000000 8
## 1447 0.26666667 0.60000000 8
## 1448 0.26666667 0.60000000 8
## 1449 0.26666667 0.60000000 8
## 1450 0.26666667 0.60000000 8
## 1451 0.26666667 0.60000000 8
## 1452 0.26666667 0.60000000 8
## 1453 0.26666667 0.60000000 8
## 1454 0.26666667 0.60000000 8
## 1455 0.26666667 0.60000000 8
## 1456 0.26666667 0.60000000 8
## 1457 0.26666667 0.60000000 8
## 1458 0.26666667 0.60000000 8
## 1459 0.26666667 0.60000000 8
## 1460 0.26666667 0.60000000 8
## 1461 0.26666667 0.60000000 8
## 1462 0.26666667 0.60000000 8
## 1463 0.26666667 0.60000000 8
## 1464 0.26666667 0.60000000 8
## 1465 0.22222222 0.55555556 7
## 1466 0.22222222 0.55555556 7
## 1467 0.22222222 0.55555556 7
## 1468 0.22222222 0.55555556 7
## 1469 0.22222222 0.55555556 7
## 1470 0.22222222 0.55555556 7
## 1471 0.22222222 0.55555556 7
## 1472 0.22222222 0.55555556 7
## 1473 0.22222222 0.55555556 7
## 1474 0.22222222 0.55555556 7
## 1475 0.22222222 0.55555556 7
## 1476 0.22222222 0.55555556 7
## 1477 0.22222222 0.55555556 7
## 1478 0.22222222 0.55555556 7
## 1479 0.22222222 0.55555556 7
## 1480 0.22222222 0.55555556 7
## 1481 0.22222222 0.55555556 7
## 1482 0.22222222 0.55555556 7
## 1483 0.22222222 0.55555556 7
## 1484 0.22222222 0.55555556 7
## 1485 0.22222222 0.55555556 7
## 1486 0.22222222 0.55555556 7
## 1487 0.22222222 0.55555556 7
## 1488 0.22222222 0.55555556 7
## 1489 0.77777778 0.77777778 8
## 1490 0.77777778 0.77777778 8
## 1491 0.77777778 0.77777778 8
## 1492 0.77777778 0.77777778 8
## 1493 0.77777778 0.77777778 8
## 1494 0.77777778 0.77777778 8
## 1495 0.77777778 0.77777778 8
## 1496 0.77777778 0.77777778 8
## 1497 0.77777778 0.77777778 8
## 1498 0.77777778 0.77777778 8
## 1499 0.77777778 0.77777778 8
## 1500 0.77777778 0.77777778 8
## 1501 0.77777778 0.77777778 8
## 1502 0.77777778 0.77777778 8
## 1503 0.77777778 0.77777778 8
## 1504 0.77777778 0.77777778 8
## 1505 0.77777778 0.77777778 8
## 1506 0.77777778 0.77777778 8
## 1507 0.77777778 0.77777778 8
## 1508 0.77777778 0.77777778 8
## 1509 0.77777778 0.77777778 8
## 1510 0.77777778 0.77777778 8
## 1511 0.77777778 0.77777778 8
## 1512 0.77777778 0.77777778 8
## 1513 0.75000000 0.75000000 7
## 1514 0.75000000 0.75000000 7
## 1515 0.75000000 0.75000000 7
## 1516 0.75000000 0.75000000 7
## 1517 0.75000000 0.75000000 7
## 1518 0.75000000 0.75000000 7
## 1519 0.75000000 0.75000000 7
## 1520 0.75000000 0.75000000 7
## 1521 0.75000000 0.75000000 7
## 1522 0.75000000 0.75000000 7
## 1523 0.75000000 0.75000000 7
## 1524 0.75000000 0.75000000 7
## 1525 0.75000000 0.75000000 7
## 1526 0.75000000 0.75000000 7
## 1527 0.75000000 0.75000000 7
## 1528 0.75000000 0.75000000 7
## 1529 0.75000000 0.75000000 7
## 1530 0.75000000 0.75000000 7
## 1531 0.75000000 0.75000000 7
## 1532 0.75000000 0.75000000 7
## 1533 0.75000000 0.75000000 7
## 1534 0.75000000 0.75000000 7
## 1535 0.75000000 0.75000000 7
## 1536 0.75000000 0.75000000 7
## 1537 0.00000000 0.00000000 11
## 1538 0.00000000 0.00000000 11
## 1539 0.00000000 0.00000000 11
## 1540 0.00000000 0.00000000 11
## 1541 0.00000000 0.00000000 11
## 1542 0.00000000 0.00000000 11
## 1543 0.00000000 0.00000000 11
## 1544 0.00000000 0.00000000 11
## 1545 0.00000000 0.00000000 11
## 1546 0.00000000 0.00000000 11
## 1547 0.00000000 0.00000000 11
## 1548 0.00000000 0.00000000 11
## 1549 0.00000000 0.00000000 11
## 1550 0.00000000 0.00000000 11
## 1551 0.00000000 0.00000000 11
## 1552 0.00000000 0.00000000 11
## 1553 0.00000000 0.00000000 11
## 1554 0.00000000 0.00000000 11
## 1555 0.00000000 0.00000000 11
## 1556 0.00000000 0.00000000 11
## 1557 0.00000000 0.00000000 11
## 1558 0.00000000 0.00000000 11
## 1559 0.00000000 0.00000000 11
## 1560 0.00000000 0.00000000 11
## 1561 0.05714286 0.20000000 9
## 1562 0.05714286 0.20000000 9
## 1563 0.05714286 0.20000000 9
## 1564 0.05714286 0.20000000 9
## 1565 0.05714286 0.20000000 9
## 1566 0.05714286 0.20000000 9
## 1567 0.05714286 0.20000000 9
## 1568 0.05714286 0.20000000 9
## 1569 0.05714286 0.20000000 9
## 1570 0.05714286 0.20000000 9
## 1571 0.05714286 0.20000000 9
## 1572 0.05714286 0.20000000 9
## 1573 0.05714286 0.20000000 9
## 1574 0.05714286 0.20000000 9
## 1575 0.05714286 0.20000000 9
## 1576 0.05714286 0.20000000 9
## 1577 0.05714286 0.20000000 9
## 1578 0.05714286 0.20000000 9
## 1579 0.05714286 0.20000000 9
## 1580 0.05714286 0.20000000 9
## 1581 0.05714286 0.20000000 9
## 1582 0.05714286 0.20000000 9
## 1583 0.05714286 0.20000000 9
## 1584 0.05714286 0.20000000 9
## 1585 0.05147059 0.17647059 10
## 1586 0.05147059 0.17647059 10
## 1587 0.05147059 0.17647059 10
## 1588 0.05147059 0.17647059 10
## 1589 0.05147059 0.17647059 10
## 1590 0.05147059 0.17647059 10
## 1591 0.05147059 0.17647059 10
## 1592 0.05147059 0.17647059 10
## 1593 0.05147059 0.17647059 10
## 1594 0.05147059 0.17647059 10
## 1595 0.05147059 0.17647059 10
## 1596 0.05147059 0.17647059 10
## 1597 0.05147059 0.17647059 10
## 1598 0.05147059 0.17647059 10
## 1599 0.05147059 0.17647059 10
## 1600 0.05147059 0.17647059 10
## 1601 0.05147059 0.17647059 10
## 1602 0.05147059 0.17647059 10
## 1603 0.05147059 0.17647059 10
## 1604 0.05147059 0.17647059 10
## 1605 0.05147059 0.17647059 10
## 1606 0.05147059 0.17647059 10
## 1607 0.05147059 0.17647059 10
## 1608 0.05147059 0.17647059 10
## 1609 0.00000000 0.16666667 7
## 1610 0.00000000 0.16666667 7
## 1611 0.00000000 0.16666667 7
## 1612 0.00000000 0.16666667 7
## 1613 0.00000000 0.16666667 7
## 1614 0.00000000 0.16666667 7
## 1615 0.00000000 0.16666667 7
## 1616 0.00000000 0.16666667 7
## 1617 0.00000000 0.16666667 7
## 1618 0.00000000 0.16666667 7
## 1619 0.00000000 0.16666667 7
## 1620 0.00000000 0.16666667 7
## 1621 0.00000000 0.16666667 7
## 1622 0.00000000 0.16666667 7
## 1623 0.00000000 0.16666667 7
## 1624 0.00000000 0.16666667 7
## 1625 0.00000000 0.16666667 7
## 1626 0.00000000 0.16666667 7
## 1627 0.00000000 0.16666667 7
## 1628 0.00000000 0.16666667 7
## 1629 0.00000000 0.16666667 7
## 1630 0.00000000 0.16666667 7
## 1631 0.00000000 0.16666667 7
## 1632 0.00000000 0.16666667 7
## 1633 0.11111111 0.77777778 8
## 1634 0.11111111 0.77777778 8
## 1635 0.11111111 0.77777778 8
## 1636 0.11111111 0.77777778 8
## 1637 0.11111111 0.77777778 8
## 1638 0.11111111 0.77777778 8
## 1639 0.11111111 0.77777778 8
## 1640 0.11111111 0.77777778 8
## 1641 0.11111111 0.77777778 8
## 1642 0.11111111 0.77777778 8
## 1643 0.11111111 0.77777778 8
## 1644 0.11111111 0.77777778 8
## 1645 0.11111111 0.77777778 8
## 1646 0.11111111 0.77777778 8
## 1647 0.11111111 0.77777778 8
## 1648 0.11111111 0.77777778 8
## 1649 0.11111111 0.77777778 8
## 1650 0.11111111 0.77777778 8
## 1651 0.11111111 0.77777778 8
## 1652 0.11111111 0.77777778 8
## 1653 0.11111111 0.77777778 8
## 1654 0.11111111 0.77777778 8
## 1655 0.11111111 0.77777778 8
## 1656 0.11111111 0.77777778 8
## 1657 0.08333333 0.75000000 7
## 1658 0.08333333 0.75000000 7
## 1659 0.08333333 0.75000000 7
## 1660 0.08333333 0.75000000 7
## 1661 0.08333333 0.75000000 7
## 1662 0.08333333 0.75000000 7
## 1663 0.08333333 0.75000000 7
## 1664 0.08333333 0.75000000 7
## 1665 0.08333333 0.75000000 7
## 1666 0.08333333 0.75000000 7
## 1667 0.08333333 0.75000000 7
## 1668 0.08333333 0.75000000 7
## 1669 0.08333333 0.75000000 7
## 1670 0.08333333 0.75000000 7
## 1671 0.08333333 0.75000000 7
## 1672 0.08333333 0.75000000 7
## 1673 0.08333333 0.75000000 7
## 1674 0.08333333 0.75000000 7
## 1675 0.08333333 0.75000000 7
## 1676 0.08333333 0.75000000 7
## 1677 0.08333333 0.75000000 7
## 1678 0.08333333 0.75000000 7
## 1679 0.08333333 0.75000000 7
## 1680 0.08333333 0.75000000 7
## 1681 0.71428571 0.71428571 6
## 1682 0.71428571 0.71428571 6
## 1683 0.71428571 0.71428571 6
## 1684 0.71428571 0.71428571 6
## 1685 0.71428571 0.71428571 6
## 1686 0.71428571 0.71428571 6
## 1687 0.71428571 0.71428571 6
## 1688 0.71428571 0.71428571 6
## 1689 0.71428571 0.71428571 6
## 1690 0.71428571 0.71428571 6
## 1691 0.71428571 0.71428571 6
## 1692 0.71428571 0.71428571 6
## 1693 0.71428571 0.71428571 6
## 1694 0.71428571 0.71428571 6
## 1695 0.71428571 0.71428571 6
## 1696 0.71428571 0.71428571 6
## 1697 0.71428571 0.71428571 6
## 1698 0.71428571 0.71428571 6
## 1699 0.71428571 0.71428571 6
## 1700 0.71428571 0.71428571 6
## 1701 0.71428571 0.71428571 6
## 1702 0.71428571 0.71428571 6
## 1703 0.71428571 0.71428571 6
## 1704 0.71428571 0.71428571 6
## 1705 0.66666667 0.66666667 5
## 1706 0.66666667 0.66666667 5
## 1707 0.66666667 0.66666667 5
## 1708 0.66666667 0.66666667 5
## 1709 0.66666667 0.66666667 5
## 1710 0.66666667 0.66666667 5
## 1711 0.66666667 0.66666667 5
## 1712 0.66666667 0.66666667 5
## 1713 0.66666667 0.66666667 5
## 1714 0.66666667 0.66666667 5
## 1715 0.66666667 0.66666667 5
## 1716 0.66666667 0.66666667 5
## 1717 0.66666667 0.66666667 5
## 1718 0.66666667 0.66666667 5
## 1719 0.66666667 0.66666667 5
## 1720 0.66666667 0.66666667 5
## 1721 0.66666667 0.66666667 5
## 1722 0.66666667 0.66666667 5
## 1723 0.66666667 0.66666667 5
## 1724 0.66666667 0.66666667 5
## 1725 0.66666667 0.66666667 5
## 1726 0.66666667 0.66666667 5
## 1727 0.66666667 0.66666667 5
## 1728 0.66666667 0.66666667 5
## 1729 0.00000000 0.00000000 11
## 1730 0.00000000 0.00000000 11
## 1731 0.00000000 0.00000000 11
## 1732 0.00000000 0.00000000 11
## 1733 0.00000000 0.00000000 11
## 1734 0.00000000 0.00000000 11
## 1735 0.00000000 0.00000000 11
## 1736 0.00000000 0.00000000 11
## 1737 0.00000000 0.00000000 11
## 1738 0.00000000 0.00000000 11
## 1739 0.00000000 0.00000000 11
## 1740 0.00000000 0.00000000 11
## 1741 0.00000000 0.00000000 11
## 1742 0.00000000 0.00000000 11
## 1743 0.00000000 0.00000000 11
## 1744 0.00000000 0.00000000 11
## 1745 0.00000000 0.00000000 11
## 1746 0.00000000 0.00000000 11
## 1747 0.00000000 0.00000000 11
## 1748 0.00000000 0.00000000 11
## 1749 0.00000000 0.00000000 11
## 1750 0.00000000 0.00000000 11
## 1751 0.00000000 0.00000000 11
## 1752 0.00000000 0.00000000 11
## 1753 0.05882353 0.05882353 9
## 1754 0.05882353 0.05882353 9
## 1755 0.05882353 0.05882353 9
## 1756 0.05882353 0.05882353 9
## 1757 0.05882353 0.05882353 9
## 1758 0.05882353 0.05882353 9
## 1759 0.05882353 0.05882353 9
## 1760 0.05882353 0.05882353 9
## 1761 0.05882353 0.05882353 9
## 1762 0.05882353 0.05882353 9
## 1763 0.05882353 0.05882353 9
## 1764 0.05882353 0.05882353 9
## 1765 0.05882353 0.05882353 9
## 1766 0.05882353 0.05882353 9
## 1767 0.05882353 0.05882353 9
## 1768 0.05882353 0.05882353 9
## 1769 0.05882353 0.05882353 9
## 1770 0.05882353 0.05882353 9
## 1771 0.05882353 0.05882353 9
## 1772 0.05882353 0.05882353 9
## 1773 0.05882353 0.05882353 9
## 1774 0.05882353 0.05882353 9
## 1775 0.05882353 0.05882353 9
## 1776 0.05882353 0.05882353 9
## 1777 0.10714286 0.25000000 10
## 1778 0.10714286 0.25000000 10
## 1779 0.10714286 0.25000000 10
## 1780 0.10714286 0.25000000 10
## 1781 0.10714286 0.25000000 10
## 1782 0.10714286 0.25000000 10
## 1783 0.10714286 0.25000000 10
## 1784 0.10714286 0.25000000 10
## 1785 0.10714286 0.25000000 10
## 1786 0.10714286 0.25000000 10
## 1787 0.10714286 0.25000000 10
## 1788 0.10714286 0.25000000 10
## 1789 0.10714286 0.25000000 10
## 1790 0.10714286 0.25000000 10
## 1791 0.10714286 0.25000000 10
## 1792 0.10714286 0.25000000 10
## 1793 0.10714286 0.25000000 10
## 1794 0.10714286 0.25000000 10
## 1795 0.10714286 0.25000000 10
## 1796 0.10714286 0.25000000 10
## 1797 0.10714286 0.25000000 10
## 1798 0.10714286 0.25000000 10
## 1799 0.10714286 0.25000000 10
## 1800 0.10714286 0.25000000 10
## 1801 0.14285714 0.14285714 8
## 1802 0.14285714 0.14285714 8
## 1803 0.14285714 0.14285714 8
## 1804 0.14285714 0.14285714 8
## 1805 0.14285714 0.14285714 8
## 1806 0.14285714 0.14285714 8
## 1807 0.14285714 0.14285714 8
## 1808 0.14285714 0.14285714 8
## 1809 0.14285714 0.14285714 8
## 1810 0.14285714 0.14285714 8
## 1811 0.14285714 0.14285714 8
## 1812 0.14285714 0.14285714 8
## 1813 0.14285714 0.14285714 8
## 1814 0.14285714 0.14285714 8
## 1815 0.14285714 0.14285714 8
## 1816 0.14285714 0.14285714 8
## 1817 0.14285714 0.14285714 8
## 1818 0.14285714 0.14285714 8
## 1819 0.14285714 0.14285714 8
## 1820 0.14285714 0.14285714 8
## 1821 0.14285714 0.14285714 8
## 1822 0.14285714 0.14285714 8
## 1823 0.14285714 0.14285714 8
## 1824 0.14285714 0.14285714 8
## 1825 0.30303030 0.63636364 9
## 1826 0.30303030 0.63636364 9
## 1827 0.30303030 0.63636364 9
## 1828 0.30303030 0.63636364 9
## 1829 0.30303030 0.63636364 9
## 1830 0.30303030 0.63636364 9
## 1831 0.30303030 0.63636364 9
## 1832 0.30303030 0.63636364 9
## 1833 0.30303030 0.63636364 9
## 1834 0.30303030 0.63636364 9
## 1835 0.30303030 0.63636364 9
## 1836 0.30303030 0.63636364 9
## 1837 0.30303030 0.63636364 9
## 1838 0.30303030 0.63636364 9
## 1839 0.30303030 0.63636364 9
## 1840 0.30303030 0.63636364 9
## 1841 0.30303030 0.63636364 9
## 1842 0.30303030 0.63636364 9
## 1843 0.30303030 0.63636364 9
## 1844 0.30303030 0.63636364 9
## 1845 0.30303030 0.63636364 9
## 1846 0.30303030 0.63636364 9
## 1847 0.30303030 0.63636364 9
## 1848 0.30303030 0.63636364 9
## 1849 0.30303030 0.63636364 9
## 1850 0.30303030 0.63636364 9
## 1851 0.30303030 0.63636364 9
## 1852 0.30303030 0.63636364 9
## 1853 0.30303030 0.63636364 9
## 1854 0.30303030 0.63636364 9
## 1855 0.30303030 0.63636364 9
## 1856 0.30303030 0.63636364 9
## 1857 0.30303030 0.63636364 9
## 1858 0.30303030 0.63636364 9
## 1859 0.30303030 0.63636364 9
## 1860 0.30303030 0.63636364 9
## 1861 0.30303030 0.63636364 9
## 1862 0.30303030 0.63636364 9
## 1863 0.30303030 0.63636364 9
## 1864 0.30303030 0.63636364 9
## 1865 0.30303030 0.63636364 9
## 1866 0.30303030 0.63636364 9
## 1867 0.30303030 0.63636364 9
## 1868 0.30303030 0.63636364 9
## 1869 0.30303030 0.63636364 9
## 1870 0.30303030 0.63636364 9
## 1871 0.30303030 0.63636364 9
## 1872 0.30303030 0.63636364 9
## 1873 0.77777778 0.77777778 8
## 1874 0.77777778 0.77777778 8
## 1875 0.77777778 0.77777778 8
## 1876 0.77777778 0.77777778 8
## 1877 0.77777778 0.77777778 8
## 1878 0.77777778 0.77777778 8
## 1879 0.77777778 0.77777778 8
## 1880 0.77777778 0.77777778 8
## 1881 0.77777778 0.77777778 8
## 1882 0.77777778 0.77777778 8
## 1883 0.77777778 0.77777778 8
## 1884 0.77777778 0.77777778 8
## 1885 0.77777778 0.77777778 8
## 1886 0.77777778 0.77777778 8
## 1887 0.77777778 0.77777778 8
## 1888 0.77777778 0.77777778 8
## 1889 0.77777778 0.77777778 8
## 1890 0.77777778 0.77777778 8
## 1891 0.77777778 0.77777778 8
## 1892 0.77777778 0.77777778 8
## 1893 0.77777778 0.77777778 8
## 1894 0.77777778 0.77777778 8
## 1895 0.77777778 0.77777778 8
## 1896 0.77777778 0.77777778 8
## 1897 0.77777778 0.77777778 8
## 1898 0.77777778 0.77777778 8
## 1899 0.77777778 0.77777778 8
## 1900 0.77777778 0.77777778 8
## 1901 0.77777778 0.77777778 8
## 1902 0.77777778 0.77777778 8
## 1903 0.77777778 0.77777778 8
## 1904 0.77777778 0.77777778 8
## 1905 0.77777778 0.77777778 8
## 1906 0.77777778 0.77777778 8
## 1907 0.77777778 0.77777778 8
## 1908 0.77777778 0.77777778 8
## 1909 0.77777778 0.77777778 8
## 1910 0.77777778 0.77777778 8
## 1911 0.77777778 0.77777778 8
## 1912 0.77777778 0.77777778 8
## 1913 0.77777778 0.77777778 8
## 1914 0.77777778 0.77777778 8
## 1915 0.77777778 0.77777778 8
## 1916 0.77777778 0.77777778 8
## 1917 0.77777778 0.77777778 8
## 1918 0.77777778 0.77777778 8
## 1919 0.77777778 0.77777778 8
## 1920 0.77777778 0.77777778 8
## 1921 0.00000000 0.00000000 11
## 1922 0.00000000 0.00000000 11
## 1923 0.00000000 0.00000000 11
## 1924 0.00000000 0.00000000 11
## 1925 0.00000000 0.00000000 11
## 1926 0.00000000 0.00000000 11
## 1927 0.00000000 0.00000000 11
## 1928 0.00000000 0.00000000 11
## 1929 0.00000000 0.00000000 11
## 1930 0.00000000 0.00000000 11
## 1931 0.00000000 0.00000000 11
## 1932 0.00000000 0.00000000 11
## 1933 0.00000000 0.00000000 11
## 1934 0.00000000 0.00000000 11
## 1935 0.00000000 0.00000000 11
## 1936 0.00000000 0.00000000 11
## 1937 0.00000000 0.00000000 11
## 1938 0.00000000 0.00000000 11
## 1939 0.00000000 0.00000000 11
## 1940 0.00000000 0.00000000 11
## 1941 0.00000000 0.00000000 11
## 1942 0.00000000 0.00000000 11
## 1943 0.00000000 0.00000000 11
## 1944 0.00000000 0.00000000 11
## 1945 0.14285714 0.14285714 8
## 1946 0.14285714 0.14285714 8
## 1947 0.14285714 0.14285714 8
## 1948 0.14285714 0.14285714 8
## 1949 0.14285714 0.14285714 8
## 1950 0.14285714 0.14285714 8
## 1951 0.14285714 0.14285714 8
## 1952 0.14285714 0.14285714 8
## 1953 0.14285714 0.14285714 8
## 1954 0.14285714 0.14285714 8
## 1955 0.14285714 0.14285714 8
## 1956 0.14285714 0.14285714 8
## 1957 0.14285714 0.14285714 8
## 1958 0.14285714 0.14285714 8
## 1959 0.14285714 0.14285714 8
## 1960 0.14285714 0.14285714 8
## 1961 0.14285714 0.14285714 8
## 1962 0.14285714 0.14285714 8
## 1963 0.14285714 0.14285714 8
## 1964 0.14285714 0.14285714 8
## 1965 0.14285714 0.14285714 8
## 1966 0.14285714 0.14285714 8
## 1967 0.14285714 0.14285714 8
## 1968 0.14285714 0.14285714 8
## 1969 0.14285714 0.14285714 8
## 1970 0.14285714 0.14285714 8
## 1971 0.14285714 0.14285714 8
## 1972 0.14285714 0.14285714 8
## 1973 0.14285714 0.14285714 8
## 1974 0.14285714 0.14285714 8
## 1975 0.14285714 0.14285714 8
## 1976 0.14285714 0.14285714 8
## 1977 0.14285714 0.14285714 8
## 1978 0.14285714 0.14285714 8
## 1979 0.14285714 0.14285714 8
## 1980 0.14285714 0.14285714 8
## 1981 0.14285714 0.14285714 8
## 1982 0.14285714 0.14285714 8
## 1983 0.14285714 0.14285714 8
## 1984 0.14285714 0.14285714 8
## 1985 0.14285714 0.14285714 8
## 1986 0.14285714 0.14285714 8
## 1987 0.14285714 0.14285714 8
## 1988 0.14285714 0.14285714 8
## 1989 0.14285714 0.14285714 8
## 1990 0.14285714 0.14285714 8
## 1991 0.14285714 0.14285714 8
## 1992 0.14285714 0.14285714 8
## 1993 0.33333333 0.33333333 8
## 1994 0.33333333 0.33333333 8
## 1995 0.33333333 0.33333333 8
## 1996 0.33333333 0.33333333 8
## 1997 0.33333333 0.33333333 8
## 1998 0.33333333 0.33333333 8
## 1999 0.33333333 0.33333333 8
## 2000 0.33333333 0.33333333 8
## 2001 0.33333333 0.33333333 8
## 2002 0.33333333 0.33333333 8
## 2003 0.33333333 0.33333333 8
## 2004 0.33333333 0.33333333 8
## 2005 0.33333333 0.33333333 8
## 2006 0.33333333 0.33333333 8
## 2007 0.33333333 0.33333333 8
## 2008 0.33333333 0.33333333 8
## 2009 0.33333333 0.33333333 8
## 2010 0.33333333 0.33333333 8
## 2011 0.33333333 0.33333333 8
## 2012 0.33333333 0.33333333 8
## 2013 0.33333333 0.33333333 8
## 2014 0.33333333 0.33333333 8
## 2015 0.33333333 0.33333333 8
## 2016 0.33333333 0.33333333 8
## 2017 0.25000000 0.50000000 9
## 2018 0.25000000 0.50000000 9
## 2019 0.25000000 0.50000000 9
## 2020 0.25000000 0.50000000 9
## 2021 0.25000000 0.50000000 9
## 2022 0.25000000 0.50000000 9
## 2023 0.25000000 0.50000000 9
## 2024 0.25000000 0.50000000 9
## 2025 0.25000000 0.50000000 9
## 2026 0.25000000 0.50000000 9
## 2027 0.25000000 0.50000000 9
## 2028 0.25000000 0.50000000 9
## 2029 0.25000000 0.50000000 9
## 2030 0.25000000 0.50000000 9
## 2031 0.25000000 0.50000000 9
## 2032 0.25000000 0.50000000 9
## 2033 0.25000000 0.50000000 9
## 2034 0.25000000 0.50000000 9
## 2035 0.25000000 0.50000000 9
## 2036 0.25000000 0.50000000 9
## 2037 0.25000000 0.50000000 9
## 2038 0.25000000 0.50000000 9
## 2039 0.25000000 0.50000000 9
## 2040 0.25000000 0.50000000 9
## 2041 0.25000000 0.75000000 7
## 2042 0.25000000 0.75000000 7
## 2043 0.25000000 0.75000000 7
## 2044 0.25000000 0.75000000 7
## 2045 0.25000000 0.75000000 7
## 2046 0.25000000 0.75000000 7
## 2047 0.25000000 0.75000000 7
## 2048 0.25000000 0.75000000 7
## 2049 0.25000000 0.75000000 7
## 2050 0.25000000 0.75000000 7
## 2051 0.25000000 0.75000000 7
## 2052 0.25000000 0.75000000 7
## 2053 0.25000000 0.75000000 7
## 2054 0.25000000 0.75000000 7
## 2055 0.25000000 0.75000000 7
## 2056 0.25000000 0.75000000 7
## 2057 0.25000000 0.75000000 7
## 2058 0.25000000 0.75000000 7
## 2059 0.25000000 0.75000000 7
## 2060 0.25000000 0.75000000 7
## 2061 0.25000000 0.75000000 7
## 2062 0.25000000 0.75000000 7
## 2063 0.25000000 0.75000000 7
## 2064 0.25000000 0.75000000 7
## 2065 0.40000000 0.40000000 7
## 2066 0.40000000 0.40000000 7
## 2067 0.40000000 0.40000000 7
## 2068 0.40000000 0.40000000 7
## 2069 0.40000000 0.40000000 7
## 2070 0.40000000 0.40000000 7
## 2071 0.40000000 0.40000000 7
## 2072 0.40000000 0.40000000 7
## 2073 0.40000000 0.40000000 7
## 2074 0.40000000 0.40000000 7
## 2075 0.40000000 0.40000000 7
## 2076 0.40000000 0.40000000 7
## 2077 0.40000000 0.40000000 7
## 2078 0.40000000 0.40000000 7
## 2079 0.40000000 0.40000000 7
## 2080 0.40000000 0.40000000 7
## 2081 0.40000000 0.40000000 7
## 2082 0.40000000 0.40000000 7
## 2083 0.40000000 0.40000000 7
## 2084 0.40000000 0.40000000 7
## 2085 0.40000000 0.40000000 7
## 2086 0.40000000 0.40000000 7
## 2087 0.40000000 0.40000000 7
## 2088 0.40000000 0.40000000 7
## 2089 0.31818182 0.81818182 10
## 2090 0.31818182 0.81818182 10
## 2091 0.31818182 0.81818182 10
## 2092 0.31818182 0.81818182 10
## 2093 0.31818182 0.81818182 10
## 2094 0.31818182 0.81818182 10
## 2095 0.31818182 0.81818182 10
## 2096 0.31818182 0.81818182 10
## 2097 0.31818182 0.81818182 10
## 2098 0.31818182 0.81818182 10
## 2099 0.31818182 0.81818182 10
## 2100 0.31818182 0.81818182 10
## 2101 0.31818182 0.81818182 10
## 2102 0.31818182 0.81818182 10
## 2103 0.31818182 0.81818182 10
## 2104 0.31818182 0.81818182 10
## 2105 0.31818182 0.81818182 10
## 2106 0.31818182 0.81818182 10
## 2107 0.31818182 0.81818182 10
## 2108 0.31818182 0.81818182 10
## 2109 0.31818182 0.81818182 10
## 2110 0.31818182 0.81818182 10
## 2111 0.31818182 0.81818182 10
## 2112 0.31818182 0.81818182 10
## 2113 0.00000000 0.00000000 11
## 2114 0.00000000 0.00000000 11
## 2115 0.00000000 0.00000000 11
## 2116 0.00000000 0.00000000 11
## 2117 0.00000000 0.00000000 11
## 2118 0.00000000 0.00000000 11
## 2119 0.00000000 0.00000000 11
## 2120 0.00000000 0.00000000 11
## 2121 0.00000000 0.00000000 11
## 2122 0.00000000 0.00000000 11
## 2123 0.00000000 0.00000000 11
## 2124 0.00000000 0.00000000 11
## 2125 0.00000000 0.00000000 11
## 2126 0.00000000 0.00000000 11
## 2127 0.00000000 0.00000000 11
## 2128 0.00000000 0.00000000 11
## 2129 0.00000000 0.00000000 11
## 2130 0.00000000 0.00000000 11
## 2131 0.00000000 0.00000000 11
## 2132 0.00000000 0.00000000 11
## 2133 0.00000000 0.00000000 11
## 2134 0.00000000 0.00000000 11
## 2135 0.00000000 0.00000000 11
## 2136 0.00000000 0.00000000 11
## 2137 0.16666667 0.33333333 10
## 2138 0.16666667 0.33333333 10
## 2139 0.16666667 0.33333333 10
## 2140 0.16666667 0.33333333 10
## 2141 0.16666667 0.33333333 10
## 2142 0.16666667 0.33333333 10
## 2143 0.16666667 0.33333333 10
## 2144 0.16666667 0.33333333 10
## 2145 0.16666667 0.33333333 10
## 2146 0.16666667 0.33333333 10
## 2147 0.16666667 0.33333333 10
## 2148 0.16666667 0.33333333 10
## 2149 0.16666667 0.33333333 10
## 2150 0.16666667 0.33333333 10
## 2151 0.16666667 0.33333333 10
## 2152 0.16666667 0.33333333 10
## 2153 0.16666667 0.33333333 10
## 2154 0.16666667 0.33333333 10
## 2155 0.16666667 0.33333333 10
## 2156 0.16666667 0.33333333 10
## 2157 0.16666667 0.33333333 10
## 2158 0.16666667 0.33333333 10
## 2159 0.16666667 0.33333333 10
## 2160 0.16666667 0.33333333 10
## 2161 0.09090909 0.09090909 6
## 2162 0.09090909 0.09090909 6
## 2163 0.09090909 0.09090909 6
## 2164 0.09090909 0.09090909 6
## 2165 0.09090909 0.09090909 6
## 2166 0.09090909 0.09090909 6
## 2167 0.09090909 0.09090909 6
## 2168 0.09090909 0.09090909 6
## 2169 0.09090909 0.09090909 6
## 2170 0.09090909 0.09090909 6
## 2171 0.09090909 0.09090909 6
## 2172 0.09090909 0.09090909 6
## 2173 0.09090909 0.09090909 6
## 2174 0.09090909 0.09090909 6
## 2175 0.09090909 0.09090909 6
## 2176 0.09090909 0.09090909 6
## 2177 0.09090909 0.09090909 6
## 2178 0.09090909 0.09090909 6
## 2179 0.09090909 0.09090909 6
## 2180 0.09090909 0.09090909 6
## 2181 0.09090909 0.09090909 6
## 2182 0.09090909 0.09090909 6
## 2183 0.09090909 0.09090909 6
## 2184 0.09090909 0.09090909 6
## 2185 0.33333333 0.33333333 8
## 2186 0.33333333 0.33333333 8
## 2187 0.33333333 0.33333333 8
## 2188 0.33333333 0.33333333 8
## 2189 0.33333333 0.33333333 8
## 2190 0.33333333 0.33333333 8
## 2191 0.33333333 0.33333333 8
## 2192 0.33333333 0.33333333 8
## 2193 0.33333333 0.33333333 8
## 2194 0.33333333 0.33333333 8
## 2195 0.33333333 0.33333333 8
## 2196 0.33333333 0.33333333 8
## 2197 0.33333333 0.33333333 8
## 2198 0.33333333 0.33333333 8
## 2199 0.33333333 0.33333333 8
## 2200 0.33333333 0.33333333 8
## 2201 0.33333333 0.33333333 8
## 2202 0.33333333 0.33333333 8
## 2203 0.33333333 0.33333333 8
## 2204 0.33333333 0.33333333 8
## 2205 0.33333333 0.33333333 8
## 2206 0.33333333 0.33333333 8
## 2207 0.33333333 0.33333333 8
## 2208 0.33333333 0.33333333 8
## 2209 0.08333333 0.33333333 6
## 2210 0.08333333 0.33333333 6
## 2211 0.08333333 0.33333333 6
## 2212 0.08333333 0.33333333 6
## 2213 0.08333333 0.33333333 6
## 2214 0.08333333 0.33333333 6
## 2215 0.08333333 0.33333333 6
## 2216 0.08333333 0.33333333 6
## 2217 0.08333333 0.33333333 6
## 2218 0.08333333 0.33333333 6
## 2219 0.08333333 0.33333333 6
## 2220 0.08333333 0.33333333 6
## 2221 0.08333333 0.33333333 6
## 2222 0.08333333 0.33333333 6
## 2223 0.08333333 0.33333333 6
## 2224 0.08333333 0.33333333 6
## 2225 0.08333333 0.33333333 6
## 2226 0.08333333 0.33333333 6
## 2227 0.08333333 0.33333333 6
## 2228 0.08333333 0.33333333 6
## 2229 0.08333333 0.33333333 6
## 2230 0.08333333 0.33333333 6
## 2231 0.08333333 0.33333333 6
## 2232 0.08333333 0.33333333 6
## 2233 0.60000000 0.60000000 8
## 2234 0.60000000 0.60000000 8
## 2235 0.60000000 0.60000000 8
## 2236 0.60000000 0.60000000 8
## 2237 0.60000000 0.60000000 8
## 2238 0.60000000 0.60000000 8
## 2239 0.60000000 0.60000000 8
## 2240 0.60000000 0.60000000 8
## 2241 0.60000000 0.60000000 8
## 2242 0.60000000 0.60000000 8
## 2243 0.60000000 0.60000000 8
## 2244 0.60000000 0.60000000 8
## 2245 0.60000000 0.60000000 8
## 2246 0.60000000 0.60000000 8
## 2247 0.60000000 0.60000000 8
## 2248 0.60000000 0.60000000 8
## 2249 0.60000000 0.60000000 8
## 2250 0.60000000 0.60000000 8
## 2251 0.60000000 0.60000000 8
## 2252 0.60000000 0.60000000 8
## 2253 0.60000000 0.60000000 8
## 2254 0.60000000 0.60000000 8
## 2255 0.60000000 0.60000000 8
## 2256 0.60000000 0.60000000 8
## 2257 0.40000000 0.40000000 7
## 2258 0.40000000 0.40000000 7
## 2259 0.40000000 0.40000000 7
## 2260 0.40000000 0.40000000 7
## 2261 0.40000000 0.40000000 7
## 2262 0.40000000 0.40000000 7
## 2263 0.40000000 0.40000000 7
## 2264 0.40000000 0.40000000 7
## 2265 0.40000000 0.40000000 7
## 2266 0.40000000 0.40000000 7
## 2267 0.40000000 0.40000000 7
## 2268 0.40000000 0.40000000 7
## 2269 0.40000000 0.40000000 7
## 2270 0.40000000 0.40000000 7
## 2271 0.40000000 0.40000000 7
## 2272 0.40000000 0.40000000 7
## 2273 0.40000000 0.40000000 7
## 2274 0.40000000 0.40000000 7
## 2275 0.40000000 0.40000000 7
## 2276 0.40000000 0.40000000 7
## 2277 0.40000000 0.40000000 7
## 2278 0.40000000 0.40000000 7
## 2279 0.40000000 0.40000000 7
## 2280 0.40000000 0.40000000 7
## 2281 0.27777778 0.77777778 8
## 2282 0.27777778 0.77777778 8
## 2283 0.27777778 0.77777778 8
## 2284 0.27777778 0.77777778 8
## 2285 0.27777778 0.77777778 8
## 2286 0.27777778 0.77777778 8
## 2287 0.27777778 0.77777778 8
## 2288 0.27777778 0.77777778 8
## 2289 0.27777778 0.77777778 8
## 2290 0.27777778 0.77777778 8
## 2291 0.27777778 0.77777778 8
## 2292 0.27777778 0.77777778 8
## 2293 0.27777778 0.77777778 8
## 2294 0.27777778 0.77777778 8
## 2295 0.27777778 0.77777778 8
## 2296 0.27777778 0.77777778 8
## 2297 0.27777778 0.77777778 8
## 2298 0.27777778 0.77777778 8
## 2299 0.27777778 0.77777778 8
## 2300 0.27777778 0.77777778 8
## 2301 0.27777778 0.77777778 8
## 2302 0.27777778 0.77777778 8
## 2303 0.27777778 0.77777778 8
## 2304 0.27777778 0.77777778 8
## 2305 0.00000000 0.00000000 11
## 2306 0.00000000 0.00000000 11
## 2307 0.00000000 0.00000000 11
## 2308 0.00000000 0.00000000 11
## 2309 0.00000000 0.00000000 11
## 2310 0.00000000 0.00000000 11
## 2311 0.00000000 0.00000000 11
## 2312 0.00000000 0.00000000 11
## 2313 0.00000000 0.00000000 11
## 2314 0.00000000 0.00000000 11
## 2315 0.00000000 0.00000000 11
## 2316 0.00000000 0.00000000 11
## 2317 0.00000000 0.00000000 11
## 2318 0.00000000 0.00000000 11
## 2319 0.00000000 0.00000000 11
## 2320 0.00000000 0.00000000 11
## 2321 0.00000000 0.00000000 11
## 2322 0.00000000 0.00000000 11
## 2323 0.00000000 0.00000000 11
## 2324 0.00000000 0.00000000 11
## 2325 0.00000000 0.00000000 11
## 2326 0.00000000 0.00000000 11
## 2327 0.00000000 0.00000000 11
## 2328 0.00000000 0.00000000 11
## 2329 0.16666667 0.33333333 10
## 2330 0.16666667 0.33333333 10
## 2331 0.16666667 0.33333333 10
## 2332 0.16666667 0.33333333 10
## 2333 0.16666667 0.33333333 10
## 2334 0.16666667 0.33333333 10
## 2335 0.16666667 0.33333333 10
## 2336 0.16666667 0.33333333 10
## 2337 0.16666667 0.33333333 10
## 2338 0.16666667 0.33333333 10
## 2339 0.16666667 0.33333333 10
## 2340 0.16666667 0.33333333 10
## 2341 0.16666667 0.33333333 10
## 2342 0.16666667 0.33333333 10
## 2343 0.16666667 0.33333333 10
## 2344 0.16666667 0.33333333 10
## 2345 0.16666667 0.33333333 10
## 2346 0.16666667 0.33333333 10
## 2347 0.16666667 0.33333333 10
## 2348 0.16666667 0.33333333 10
## 2349 0.16666667 0.33333333 10
## 2350 0.16666667 0.33333333 10
## 2351 0.16666667 0.33333333 10
## 2352 0.16666667 0.33333333 10
## 2353 0.20000000 0.20000000 9
## 2354 0.20000000 0.20000000 9
## 2355 0.20000000 0.20000000 9
## 2356 0.20000000 0.20000000 9
## 2357 0.20000000 0.20000000 9
## 2358 0.20000000 0.20000000 9
## 2359 0.20000000 0.20000000 9
## 2360 0.20000000 0.20000000 9
## 2361 0.20000000 0.20000000 9
## 2362 0.20000000 0.20000000 9
## 2363 0.20000000 0.20000000 9
## 2364 0.20000000 0.20000000 9
## 2365 0.20000000 0.20000000 9
## 2366 0.20000000 0.20000000 9
## 2367 0.20000000 0.20000000 9
## 2368 0.20000000 0.20000000 9
## 2369 0.20000000 0.20000000 9
## 2370 0.20000000 0.20000000 9
## 2371 0.20000000 0.20000000 9
## 2372 0.20000000 0.20000000 9
## 2373 0.20000000 0.20000000 9
## 2374 0.20000000 0.20000000 9
## 2375 0.20000000 0.20000000 9
## 2376 0.20000000 0.20000000 9
## 2377 0.38461538 0.38461538 9
## 2378 0.38461538 0.38461538 9
## 2379 0.38461538 0.38461538 9
## 2380 0.38461538 0.38461538 9
## 2381 0.38461538 0.38461538 9
## 2382 0.38461538 0.38461538 9
## 2383 0.38461538 0.38461538 9
## 2384 0.38461538 0.38461538 9
## 2385 0.38461538 0.38461538 9
## 2386 0.38461538 0.38461538 9
## 2387 0.38461538 0.38461538 9
## 2388 0.38461538 0.38461538 9
## 2389 0.38461538 0.38461538 9
## 2390 0.38461538 0.38461538 9
## 2391 0.38461538 0.38461538 9
## 2392 0.38461538 0.38461538 9
## 2393 0.38461538 0.38461538 9
## 2394 0.38461538 0.38461538 9
## 2395 0.38461538 0.38461538 9
## 2396 0.38461538 0.38461538 9
## 2397 0.38461538 0.38461538 9
## 2398 0.38461538 0.38461538 9
## 2399 0.38461538 0.38461538 9
## 2400 0.38461538 0.38461538 9
## 2401 0.20454545 0.45454545 8
## 2402 0.20454545 0.45454545 8
## 2403 0.20454545 0.45454545 8
## 2404 0.20454545 0.45454545 8
## 2405 0.20454545 0.45454545 8
## 2406 0.20454545 0.45454545 8
## 2407 0.20454545 0.45454545 8
## 2408 0.20454545 0.45454545 8
## 2409 0.20454545 0.45454545 8
## 2410 0.20454545 0.45454545 8
## 2411 0.20454545 0.45454545 8
## 2412 0.20454545 0.45454545 8
## 2413 0.20454545 0.45454545 8
## 2414 0.20454545 0.45454545 8
## 2415 0.20454545 0.45454545 8
## 2416 0.20454545 0.45454545 8
## 2417 0.20454545 0.45454545 8
## 2418 0.20454545 0.45454545 8
## 2419 0.20454545 0.45454545 8
## 2420 0.20454545 0.45454545 8
## 2421 0.20454545 0.45454545 8
## 2422 0.20454545 0.45454545 8
## 2423 0.20454545 0.45454545 8
## 2424 0.20454545 0.45454545 8
## 2425 0.25000000 0.75000000 7
## 2426 0.25000000 0.75000000 7
## 2427 0.25000000 0.75000000 7
## 2428 0.25000000 0.75000000 7
## 2429 0.25000000 0.75000000 7
## 2430 0.25000000 0.75000000 7
## 2431 0.25000000 0.75000000 7
## 2432 0.25000000 0.75000000 7
## 2433 0.25000000 0.75000000 7
## 2434 0.25000000 0.75000000 7
## 2435 0.25000000 0.75000000 7
## 2436 0.25000000 0.75000000 7
## 2437 0.25000000 0.75000000 7
## 2438 0.25000000 0.75000000 7
## 2439 0.25000000 0.75000000 7
## 2440 0.25000000 0.75000000 7
## 2441 0.25000000 0.75000000 7
## 2442 0.25000000 0.75000000 7
## 2443 0.25000000 0.75000000 7
## 2444 0.25000000 0.75000000 7
## 2445 0.25000000 0.75000000 7
## 2446 0.25000000 0.75000000 7
## 2447 0.25000000 0.75000000 7
## 2448 0.25000000 0.75000000 7
## 2449 0.45454545 0.45454545 8
## 2450 0.45454545 0.45454545 8
## 2451 0.45454545 0.45454545 8
## 2452 0.45454545 0.45454545 8
## 2453 0.45454545 0.45454545 8
## 2454 0.45454545 0.45454545 8
## 2455 0.45454545 0.45454545 8
## 2456 0.45454545 0.45454545 8
## 2457 0.45454545 0.45454545 8
## 2458 0.45454545 0.45454545 8
## 2459 0.45454545 0.45454545 8
## 2460 0.45454545 0.45454545 8
## 2461 0.45454545 0.45454545 8
## 2462 0.45454545 0.45454545 8
## 2463 0.45454545 0.45454545 8
## 2464 0.45454545 0.45454545 8
## 2465 0.45454545 0.45454545 8
## 2466 0.45454545 0.45454545 8
## 2467 0.45454545 0.45454545 8
## 2468 0.45454545 0.45454545 8
## 2469 0.45454545 0.45454545 8
## 2470 0.45454545 0.45454545 8
## 2471 0.45454545 0.45454545 8
## 2472 0.45454545 0.45454545 8
## 2473 0.27777778 0.77777778 8
## 2474 0.27777778 0.77777778 8
## 2475 0.27777778 0.77777778 8
## 2476 0.27777778 0.77777778 8
## 2477 0.27777778 0.77777778 8
## 2478 0.27777778 0.77777778 8
## 2479 0.27777778 0.77777778 8
## 2480 0.27777778 0.77777778 8
## 2481 0.27777778 0.77777778 8
## 2482 0.27777778 0.77777778 8
## 2483 0.27777778 0.77777778 8
## 2484 0.27777778 0.77777778 8
## 2485 0.27777778 0.77777778 8
## 2486 0.27777778 0.77777778 8
## 2487 0.27777778 0.77777778 8
## 2488 0.27777778 0.77777778 8
## 2489 0.27777778 0.77777778 8
## 2490 0.27777778 0.77777778 8
## 2491 0.27777778 0.77777778 8
## 2492 0.27777778 0.77777778 8
## 2493 0.27777778 0.77777778 8
## 2494 0.27777778 0.77777778 8
## 2495 0.27777778 0.77777778 8
## 2496 0.27777778 0.77777778 8
## 2497 0.00000000 0.00000000 11
## 2498 0.00000000 0.00000000 11
## 2499 0.00000000 0.00000000 11
## 2500 0.00000000 0.00000000 11
## 2501 0.00000000 0.00000000 11
## 2502 0.00000000 0.00000000 11
## 2503 0.00000000 0.00000000 11
## 2504 0.00000000 0.00000000 11
## 2505 0.00000000 0.00000000 11
## 2506 0.00000000 0.00000000 11
## 2507 0.00000000 0.00000000 11
## 2508 0.00000000 0.00000000 11
## 2509 0.00000000 0.00000000 11
## 2510 0.00000000 0.00000000 11
## 2511 0.00000000 0.00000000 11
## 2512 0.00000000 0.00000000 11
## 2513 0.00000000 0.00000000 11
## 2514 0.00000000 0.00000000 11
## 2515 0.00000000 0.00000000 11
## 2516 0.00000000 0.00000000 11
## 2517 0.00000000 0.00000000 11
## 2518 0.00000000 0.00000000 11
## 2519 0.00000000 0.00000000 11
## 2520 0.00000000 0.00000000 11
## 2521 0.07692308 0.07692308 7
## 2522 0.07692308 0.07692308 7
## 2523 0.07692308 0.07692308 7
## 2524 0.07692308 0.07692308 7
## 2525 0.07692308 0.07692308 7
## 2526 0.07692308 0.07692308 7
## 2527 0.07692308 0.07692308 7
## 2528 0.07692308 0.07692308 7
## 2529 0.07692308 0.07692308 7
## 2530 0.07692308 0.07692308 7
## 2531 0.07692308 0.07692308 7
## 2532 0.07692308 0.07692308 7
## 2533 0.07692308 0.07692308 7
## 2534 0.07692308 0.07692308 7
## 2535 0.07692308 0.07692308 7
## 2536 0.07692308 0.07692308 7
## 2537 0.07692308 0.07692308 7
## 2538 0.07692308 0.07692308 7
## 2539 0.07692308 0.07692308 7
## 2540 0.07692308 0.07692308 7
## 2541 0.07692308 0.07692308 7
## 2542 0.07692308 0.07692308 7
## 2543 0.07692308 0.07692308 7
## 2544 0.07692308 0.07692308 7
## 2545 0.14285714 0.14285714 8
## 2546 0.14285714 0.14285714 8
## 2547 0.14285714 0.14285714 8
## 2548 0.14285714 0.14285714 8
## 2549 0.14285714 0.14285714 8
## 2550 0.14285714 0.14285714 8
## 2551 0.14285714 0.14285714 8
## 2552 0.14285714 0.14285714 8
## 2553 0.14285714 0.14285714 8
## 2554 0.14285714 0.14285714 8
## 2555 0.14285714 0.14285714 8
## 2556 0.14285714 0.14285714 8
## 2557 0.14285714 0.14285714 8
## 2558 0.14285714 0.14285714 8
## 2559 0.14285714 0.14285714 8
## 2560 0.14285714 0.14285714 8
## 2561 0.14285714 0.14285714 8
## 2562 0.14285714 0.14285714 8
## 2563 0.14285714 0.14285714 8
## 2564 0.14285714 0.14285714 8
## 2565 0.14285714 0.14285714 8
## 2566 0.14285714 0.14285714 8
## 2567 0.14285714 0.14285714 8
## 2568 0.14285714 0.14285714 8
## 2569 0.15000000 0.40000000 7
## 2570 0.15000000 0.40000000 7
## 2571 0.15000000 0.40000000 7
## 2572 0.15000000 0.40000000 7
## 2573 0.15000000 0.40000000 7
## 2574 0.15000000 0.40000000 7
## 2575 0.15000000 0.40000000 7
## 2576 0.15000000 0.40000000 7
## 2577 0.15000000 0.40000000 7
## 2578 0.15000000 0.40000000 7
## 2579 0.15000000 0.40000000 7
## 2580 0.15000000 0.40000000 7
## 2581 0.15000000 0.40000000 7
## 2582 0.15000000 0.40000000 7
## 2583 0.15000000 0.40000000 7
## 2584 0.15000000 0.40000000 7
## 2585 0.15000000 0.40000000 7
## 2586 0.15000000 0.40000000 7
## 2587 0.15000000 0.40000000 7
## 2588 0.15000000 0.40000000 7
## 2589 0.15000000 0.40000000 7
## 2590 0.15000000 0.40000000 7
## 2591 0.15000000 0.40000000 7
## 2592 0.15000000 0.40000000 7
## 2593 0.15000000 0.40000000 7
## 2594 0.15000000 0.40000000 7
## 2595 0.15000000 0.40000000 7
## 2596 0.15000000 0.40000000 7
## 2597 0.15000000 0.40000000 7
## 2598 0.15000000 0.40000000 7
## 2599 0.15000000 0.40000000 7
## 2600 0.15000000 0.40000000 7
## 2601 0.15000000 0.40000000 7
## 2602 0.15000000 0.40000000 7
## 2603 0.15000000 0.40000000 7
## 2604 0.15000000 0.40000000 7
## 2605 0.15000000 0.40000000 7
## 2606 0.15000000 0.40000000 7
## 2607 0.15000000 0.40000000 7
## 2608 0.15000000 0.40000000 7
## 2609 0.15000000 0.40000000 7
## 2610 0.15000000 0.40000000 7
## 2611 0.15000000 0.40000000 7
## 2612 0.15000000 0.40000000 7
## 2613 0.15000000 0.40000000 7
## 2614 0.15000000 0.40000000 7
## 2615 0.15000000 0.40000000 7
## 2616 0.15000000 0.40000000 7
## 2617 0.21428571 0.71428571 6
## 2618 0.21428571 0.71428571 6
## 2619 0.21428571 0.71428571 6
## 2620 0.21428571 0.71428571 6
## 2621 0.21428571 0.71428571 6
## 2622 0.21428571 0.71428571 6
## 2623 0.21428571 0.71428571 6
## 2624 0.21428571 0.71428571 6
## 2625 0.21428571 0.71428571 6
## 2626 0.21428571 0.71428571 6
## 2627 0.21428571 0.71428571 6
## 2628 0.21428571 0.71428571 6
## 2629 0.21428571 0.71428571 6
## 2630 0.21428571 0.71428571 6
## 2631 0.21428571 0.71428571 6
## 2632 0.21428571 0.71428571 6
## 2633 0.21428571 0.71428571 6
## 2634 0.21428571 0.71428571 6
## 2635 0.21428571 0.71428571 6
## 2636 0.21428571 0.71428571 6
## 2637 0.21428571 0.71428571 6
## 2638 0.21428571 0.71428571 6
## 2639 0.21428571 0.71428571 6
## 2640 0.21428571 0.71428571 6
## 2641 0.22222222 0.55555556 7
## 2642 0.22222222 0.55555556 7
## 2643 0.22222222 0.55555556 7
## 2644 0.22222222 0.55555556 7
## 2645 0.22222222 0.55555556 7
## 2646 0.22222222 0.55555556 7
## 2647 0.22222222 0.55555556 7
## 2648 0.22222222 0.55555556 7
## 2649 0.22222222 0.55555556 7
## 2650 0.22222222 0.55555556 7
## 2651 0.22222222 0.55555556 7
## 2652 0.22222222 0.55555556 7
## 2653 0.22222222 0.55555556 7
## 2654 0.22222222 0.55555556 7
## 2655 0.22222222 0.55555556 7
## 2656 0.22222222 0.55555556 7
## 2657 0.22222222 0.55555556 7
## 2658 0.22222222 0.55555556 7
## 2659 0.22222222 0.55555556 7
## 2660 0.22222222 0.55555556 7
## 2661 0.22222222 0.55555556 7
## 2662 0.22222222 0.55555556 7
## 2663 0.22222222 0.55555556 7
## 2664 0.22222222 0.55555556 7
## 2665 0.21428571 0.71428571 6
## 2666 0.21428571 0.71428571 6
## 2667 0.21428571 0.71428571 6
## 2668 0.21428571 0.71428571 6
## 2669 0.21428571 0.71428571 6
## 2670 0.21428571 0.71428571 6
## 2671 0.21428571 0.71428571 6
## 2672 0.21428571 0.71428571 6
## 2673 0.21428571 0.71428571 6
## 2674 0.21428571 0.71428571 6
## 2675 0.21428571 0.71428571 6
## 2676 0.21428571 0.71428571 6
## 2677 0.21428571 0.71428571 6
## 2678 0.21428571 0.71428571 6
## 2679 0.21428571 0.71428571 6
## 2680 0.21428571 0.71428571 6
## 2681 0.21428571 0.71428571 6
## 2682 0.21428571 0.71428571 6
## 2683 0.21428571 0.71428571 6
## 2684 0.21428571 0.71428571 6
## 2685 0.21428571 0.71428571 6
## 2686 0.21428571 0.71428571 6
## 2687 0.21428571 0.71428571 6
## 2688 0.21428571 0.71428571 6
## 2689 0.00000000 0.00000000 11
## 2690 0.00000000 0.00000000 11
## 2691 0.00000000 0.00000000 11
## 2692 0.00000000 0.00000000 11
## 2693 0.00000000 0.00000000 11
## 2694 0.00000000 0.00000000 11
## 2695 0.00000000 0.00000000 11
## 2696 0.00000000 0.00000000 11
## 2697 0.00000000 0.00000000 11
## 2698 0.00000000 0.00000000 11
## 2699 0.00000000 0.00000000 11
## 2700 0.00000000 0.00000000 11
## 2701 0.00000000 0.00000000 11
## 2702 0.00000000 0.00000000 11
## 2703 0.00000000 0.00000000 11
## 2704 0.00000000 0.00000000 11
## 2705 0.00000000 0.00000000 11
## 2706 0.00000000 0.00000000 11
## 2707 0.00000000 0.00000000 11
## 2708 0.00000000 0.00000000 11
## 2709 0.00000000 0.00000000 11
## 2710 0.00000000 0.00000000 11
## 2711 0.00000000 0.00000000 11
## 2712 0.00000000 0.00000000 11
## 2713 0.20000000 0.20000000 9
## 2714 0.20000000 0.20000000 9
## 2715 0.20000000 0.20000000 9
## 2716 0.20000000 0.20000000 9
## 2717 0.20000000 0.20000000 9
## 2718 0.20000000 0.20000000 9
## 2719 0.20000000 0.20000000 9
## 2720 0.20000000 0.20000000 9
## 2721 0.20000000 0.20000000 9
## 2722 0.20000000 0.20000000 9
## 2723 0.20000000 0.20000000 9
## 2724 0.20000000 0.20000000 9
## 2725 0.20000000 0.20000000 9
## 2726 0.20000000 0.20000000 9
## 2727 0.20000000 0.20000000 9
## 2728 0.20000000 0.20000000 9
## 2729 0.20000000 0.20000000 9
## 2730 0.20000000 0.20000000 9
## 2731 0.20000000 0.20000000 9
## 2732 0.20000000 0.20000000 9
## 2733 0.20000000 0.20000000 9
## 2734 0.20000000 0.20000000 9
## 2735 0.20000000 0.20000000 9
## 2736 0.20000000 0.20000000 9
## 2737 0.07692308 0.07692308 7
## 2738 0.07692308 0.07692308 7
## 2739 0.07692308 0.07692308 7
## 2740 0.07692308 0.07692308 7
## 2741 0.07692308 0.07692308 7
## 2742 0.07692308 0.07692308 7
## 2743 0.07692308 0.07692308 7
## 2744 0.07692308 0.07692308 7
## 2745 0.07692308 0.07692308 7
## 2746 0.07692308 0.07692308 7
## 2747 0.07692308 0.07692308 7
## 2748 0.07692308 0.07692308 7
## 2749 0.07692308 0.07692308 7
## 2750 0.07692308 0.07692308 7
## 2751 0.07692308 0.07692308 7
## 2752 0.07692308 0.07692308 7
## 2753 0.07692308 0.07692308 7
## 2754 0.07692308 0.07692308 7
## 2755 0.07692308 0.07692308 7
## 2756 0.07692308 0.07692308 7
## 2757 0.07692308 0.07692308 7
## 2758 0.07692308 0.07692308 7
## 2759 0.07692308 0.07692308 7
## 2760 0.07692308 0.07692308 7
## 2761 0.33333333 0.33333333 8
## 2762 0.33333333 0.33333333 8
## 2763 0.33333333 0.33333333 8
## 2764 0.33333333 0.33333333 8
## 2765 0.33333333 0.33333333 8
## 2766 0.33333333 0.33333333 8
## 2767 0.33333333 0.33333333 8
## 2768 0.33333333 0.33333333 8
## 2769 0.33333333 0.33333333 8
## 2770 0.33333333 0.33333333 8
## 2771 0.33333333 0.33333333 8
## 2772 0.33333333 0.33333333 8
## 2773 0.33333333 0.33333333 8
## 2774 0.33333333 0.33333333 8
## 2775 0.33333333 0.33333333 8
## 2776 0.33333333 0.33333333 8
## 2777 0.33333333 0.33333333 8
## 2778 0.33333333 0.33333333 8
## 2779 0.33333333 0.33333333 8
## 2780 0.33333333 0.33333333 8
## 2781 0.33333333 0.33333333 8
## 2782 0.33333333 0.33333333 8
## 2783 0.33333333 0.33333333 8
## 2784 0.33333333 0.33333333 8
## 2785 0.25000000 0.50000000 9
## 2786 0.25000000 0.50000000 9
## 2787 0.25000000 0.50000000 9
## 2788 0.25000000 0.50000000 9
## 2789 0.25000000 0.50000000 9
## 2790 0.25000000 0.50000000 9
## 2791 0.25000000 0.50000000 9
## 2792 0.25000000 0.50000000 9
## 2793 0.25000000 0.50000000 9
## 2794 0.25000000 0.50000000 9
## 2795 0.25000000 0.50000000 9
## 2796 0.25000000 0.50000000 9
## 2797 0.25000000 0.50000000 9
## 2798 0.25000000 0.50000000 9
## 2799 0.25000000 0.50000000 9
## 2800 0.25000000 0.50000000 9
## 2801 0.25000000 0.50000000 9
## 2802 0.25000000 0.50000000 9
## 2803 0.25000000 0.50000000 9
## 2804 0.25000000 0.50000000 9
## 2805 0.25000000 0.50000000 9
## 2806 0.25000000 0.50000000 9
## 2807 0.25000000 0.50000000 9
## 2808 0.25000000 0.50000000 9
## 2809 0.30000000 0.80000000 9
## 2810 0.30000000 0.80000000 9
## 2811 0.30000000 0.80000000 9
## 2812 0.30000000 0.80000000 9
## 2813 0.30000000 0.80000000 9
## 2814 0.30000000 0.80000000 9
## 2815 0.30000000 0.80000000 9
## 2816 0.30000000 0.80000000 9
## 2817 0.30000000 0.80000000 9
## 2818 0.30000000 0.80000000 9
## 2819 0.30000000 0.80000000 9
## 2820 0.30000000 0.80000000 9
## 2821 0.30000000 0.80000000 9
## 2822 0.30000000 0.80000000 9
## 2823 0.30000000 0.80000000 9
## 2824 0.30000000 0.80000000 9
## 2825 0.30000000 0.80000000 9
## 2826 0.30000000 0.80000000 9
## 2827 0.30000000 0.80000000 9
## 2828 0.30000000 0.80000000 9
## 2829 0.30000000 0.80000000 9
## 2830 0.30000000 0.80000000 9
## 2831 0.30000000 0.80000000 9
## 2832 0.30000000 0.80000000 9
## 2833 0.45454545 0.45454545 8
## 2834 0.45454545 0.45454545 8
## 2835 0.45454545 0.45454545 8
## 2836 0.45454545 0.45454545 8
## 2837 0.45454545 0.45454545 8
## 2838 0.45454545 0.45454545 8
## 2839 0.45454545 0.45454545 8
## 2840 0.45454545 0.45454545 8
## 2841 0.45454545 0.45454545 8
## 2842 0.45454545 0.45454545 8
## 2843 0.45454545 0.45454545 8
## 2844 0.45454545 0.45454545 8
## 2845 0.45454545 0.45454545 8
## 2846 0.45454545 0.45454545 8
## 2847 0.45454545 0.45454545 8
## 2848 0.45454545 0.45454545 8
## 2849 0.45454545 0.45454545 8
## 2850 0.45454545 0.45454545 8
## 2851 0.45454545 0.45454545 8
## 2852 0.45454545 0.45454545 8
## 2853 0.45454545 0.45454545 8
## 2854 0.45454545 0.45454545 8
## 2855 0.45454545 0.45454545 8
## 2856 0.45454545 0.45454545 8
## 2857 0.30000000 0.80000000 9
## 2858 0.30000000 0.80000000 9
## 2859 0.30000000 0.80000000 9
## 2860 0.30000000 0.80000000 9
## 2861 0.30000000 0.80000000 9
## 2862 0.30000000 0.80000000 9
## 2863 0.30000000 0.80000000 9
## 2864 0.30000000 0.80000000 9
## 2865 0.30000000 0.80000000 9
## 2866 0.30000000 0.80000000 9
## 2867 0.30000000 0.80000000 9
## 2868 0.30000000 0.80000000 9
## 2869 0.30000000 0.80000000 9
## 2870 0.30000000 0.80000000 9
## 2871 0.30000000 0.80000000 9
## 2872 0.30000000 0.80000000 9
## 2873 0.30000000 0.80000000 9
## 2874 0.30000000 0.80000000 9
## 2875 0.30000000 0.80000000 9
## 2876 0.30000000 0.80000000 9
## 2877 0.30000000 0.80000000 9
## 2878 0.30000000 0.80000000 9
## 2879 0.30000000 0.80000000 9
## 2880 0.30000000 0.80000000 9
## 2881 0.00000000 0.00000000 11
## 2882 0.00000000 0.00000000 11
## 2883 0.00000000 0.00000000 11
## 2884 0.00000000 0.00000000 11
## 2885 0.00000000 0.00000000 11
## 2886 0.00000000 0.00000000 11
## 2887 0.00000000 0.00000000 11
## 2888 0.00000000 0.00000000 11
## 2889 0.00000000 0.00000000 11
## 2890 0.00000000 0.00000000 11
## 2891 0.00000000 0.00000000 11
## 2892 0.00000000 0.00000000 11
## 2893 0.00000000 0.00000000 11
## 2894 0.00000000 0.00000000 11
## 2895 0.00000000 0.00000000 11
## 2896 0.00000000 0.00000000 11
## 2897 0.00000000 0.00000000 11
## 2898 0.00000000 0.00000000 11
## 2899 0.00000000 0.00000000 11
## 2900 0.00000000 0.00000000 11
## 2901 0.00000000 0.00000000 11
## 2902 0.00000000 0.00000000 11
## 2903 0.00000000 0.00000000 11
## 2904 0.00000000 0.00000000 11
## 2905 0.05714286 0.20000000 9
## 2906 0.05714286 0.20000000 9
## 2907 0.05714286 0.20000000 9
## 2908 0.05714286 0.20000000 9
## 2909 0.05714286 0.20000000 9
## 2910 0.05714286 0.20000000 9
## 2911 0.05714286 0.20000000 9
## 2912 0.05714286 0.20000000 9
## 2913 0.05714286 0.20000000 9
## 2914 0.05714286 0.20000000 9
## 2915 0.05714286 0.20000000 9
## 2916 0.05714286 0.20000000 9
## 2917 0.05714286 0.20000000 9
## 2918 0.05714286 0.20000000 9
## 2919 0.05714286 0.20000000 9
## 2920 0.05714286 0.20000000 9
## 2921 0.05714286 0.20000000 9
## 2922 0.05714286 0.20000000 9
## 2923 0.05714286 0.20000000 9
## 2924 0.05714286 0.20000000 9
## 2925 0.05714286 0.20000000 9
## 2926 0.05714286 0.20000000 9
## 2927 0.05714286 0.20000000 9
## 2928 0.05714286 0.20000000 9
## 2929 0.00000000 0.25000000 10
## 2930 0.00000000 0.25000000 10
## 2931 0.00000000 0.25000000 10
## 2932 0.00000000 0.25000000 10
## 2933 0.00000000 0.25000000 10
## 2934 0.00000000 0.25000000 10
## 2935 0.00000000 0.25000000 10
## 2936 0.00000000 0.25000000 10
## 2937 0.00000000 0.25000000 10
## 2938 0.00000000 0.25000000 10
## 2939 0.00000000 0.25000000 10
## 2940 0.00000000 0.25000000 10
## 2941 0.00000000 0.25000000 10
## 2942 0.00000000 0.25000000 10
## 2943 0.00000000 0.25000000 10
## 2944 0.00000000 0.25000000 10
## 2945 0.00000000 0.25000000 10
## 2946 0.00000000 0.25000000 10
## 2947 0.00000000 0.25000000 10
## 2948 0.00000000 0.25000000 10
## 2949 0.00000000 0.25000000 10
## 2950 0.00000000 0.25000000 10
## 2951 0.00000000 0.25000000 10
## 2952 0.00000000 0.25000000 10
## 2953 0.60000000 0.60000000 8
## 2954 0.60000000 0.60000000 8
## 2955 0.60000000 0.60000000 8
## 2956 0.60000000 0.60000000 8
## 2957 0.60000000 0.60000000 8
## 2958 0.60000000 0.60000000 8
## 2959 0.60000000 0.60000000 8
## 2960 0.60000000 0.60000000 8
## 2961 0.60000000 0.60000000 8
## 2962 0.60000000 0.60000000 8
## 2963 0.60000000 0.60000000 8
## 2964 0.60000000 0.60000000 8
## 2965 0.60000000 0.60000000 8
## 2966 0.60000000 0.60000000 8
## 2967 0.60000000 0.60000000 8
## 2968 0.60000000 0.60000000 8
## 2969 0.60000000 0.60000000 8
## 2970 0.60000000 0.60000000 8
## 2971 0.60000000 0.60000000 8
## 2972 0.60000000 0.60000000 8
## 2973 0.60000000 0.60000000 8
## 2974 0.60000000 0.60000000 8
## 2975 0.60000000 0.60000000 8
## 2976 0.60000000 0.60000000 8
## 2977 0.33333333 0.33333333 8
## 2978 0.33333333 0.33333333 8
## 2979 0.33333333 0.33333333 8
## 2980 0.33333333 0.33333333 8
## 2981 0.33333333 0.33333333 8
## 2982 0.33333333 0.33333333 8
## 2983 0.33333333 0.33333333 8
## 2984 0.33333333 0.33333333 8
## 2985 0.33333333 0.33333333 8
## 2986 0.33333333 0.33333333 8
## 2987 0.33333333 0.33333333 8
## 2988 0.33333333 0.33333333 8
## 2989 0.33333333 0.33333333 8
## 2990 0.33333333 0.33333333 8
## 2991 0.33333333 0.33333333 8
## 2992 0.33333333 0.33333333 8
## 2993 0.33333333 0.33333333 8
## 2994 0.33333333 0.33333333 8
## 2995 0.33333333 0.33333333 8
## 2996 0.33333333 0.33333333 8
## 2997 0.33333333 0.33333333 8
## 2998 0.33333333 0.33333333 8
## 2999 0.33333333 0.33333333 8
## 3000 0.33333333 0.33333333 8
## 3001 0.33333333 0.33333333 6
## 3002 0.33333333 0.33333333 6
## 3003 0.33333333 0.33333333 6
## 3004 0.33333333 0.33333333 6
## 3005 0.33333333 0.33333333 6
## 3006 0.33333333 0.33333333 6
## 3007 0.33333333 0.33333333 6
## 3008 0.33333333 0.33333333 6
## 3009 0.33333333 0.33333333 6
## 3010 0.33333333 0.33333333 6
## 3011 0.33333333 0.33333333 6
## 3012 0.33333333 0.33333333 6
## 3013 0.33333333 0.33333333 6
## 3014 0.33333333 0.33333333 6
## 3015 0.33333333 0.33333333 6
## 3016 0.33333333 0.33333333 6
## 3017 0.33333333 0.33333333 6
## 3018 0.33333333 0.33333333 6
## 3019 0.33333333 0.33333333 6
## 3020 0.33333333 0.33333333 6
## 3021 0.33333333 0.33333333 6
## 3022 0.33333333 0.33333333 6
## 3023 0.33333333 0.33333333 6
## 3024 0.33333333 0.33333333 6
## 3025 0.27777778 0.77777778 8
## 3026 0.27777778 0.77777778 8
## 3027 0.27777778 0.77777778 8
## 3028 0.27777778 0.77777778 8
## 3029 0.27777778 0.77777778 8
## 3030 0.27777778 0.77777778 8
## 3031 0.27777778 0.77777778 8
## 3032 0.27777778 0.77777778 8
## 3033 0.27777778 0.77777778 8
## 3034 0.27777778 0.77777778 8
## 3035 0.27777778 0.77777778 8
## 3036 0.27777778 0.77777778 8
## 3037 0.27777778 0.77777778 8
## 3038 0.27777778 0.77777778 8
## 3039 0.27777778 0.77777778 8
## 3040 0.27777778 0.77777778 8
## 3041 0.27777778 0.77777778 8
## 3042 0.27777778 0.77777778 8
## 3043 0.27777778 0.77777778 8
## 3044 0.27777778 0.77777778 8
## 3045 0.27777778 0.77777778 8
## 3046 0.27777778 0.77777778 8
## 3047 0.27777778 0.77777778 8
## 3048 0.27777778 0.77777778 8
## 3049 0.28571429 0.28571429 9
## 3050 0.28571429 0.28571429 9
## 3051 0.28571429 0.28571429 9
## 3052 0.28571429 0.28571429 9
## 3053 0.28571429 0.28571429 9
## 3054 0.28571429 0.28571429 9
## 3055 0.28571429 0.28571429 9
## 3056 0.28571429 0.28571429 9
## 3057 0.28571429 0.28571429 9
## 3058 0.28571429 0.28571429 9
## 3059 0.28571429 0.28571429 9
## 3060 0.28571429 0.28571429 9
## 3061 0.28571429 0.28571429 9
## 3062 0.28571429 0.28571429 9
## 3063 0.28571429 0.28571429 9
## 3064 0.28571429 0.28571429 9
## 3065 0.28571429 0.28571429 9
## 3066 0.28571429 0.28571429 9
## 3067 0.28571429 0.28571429 9
## 3068 0.28571429 0.28571429 9
## 3069 0.28571429 0.28571429 9
## 3070 0.28571429 0.28571429 9
## 3071 0.28571429 0.28571429 9
## 3072 0.28571429 0.28571429 9
## 3073 0.00000000 0.00000000 11
## 3074 0.00000000 0.00000000 11
## 3075 0.00000000 0.00000000 11
## 3076 0.00000000 0.00000000 11
## 3077 0.00000000 0.00000000 11
## 3078 0.00000000 0.00000000 11
## 3079 0.00000000 0.00000000 11
## 3080 0.00000000 0.00000000 11
## 3081 0.00000000 0.00000000 11
## 3082 0.00000000 0.00000000 11
## 3083 0.00000000 0.00000000 11
## 3084 0.00000000 0.00000000 11
## 3085 0.00000000 0.00000000 11
## 3086 0.00000000 0.00000000 11
## 3087 0.00000000 0.00000000 11
## 3088 0.00000000 0.00000000 11
## 3089 0.00000000 0.00000000 11
## 3090 0.00000000 0.00000000 11
## 3091 0.00000000 0.00000000 11
## 3092 0.00000000 0.00000000 11
## 3093 0.00000000 0.00000000 11
## 3094 0.00000000 0.00000000 11
## 3095 0.00000000 0.00000000 11
## 3096 0.00000000 0.00000000 11
## 3097 0.10714286 0.25000000 10
## 3098 0.10714286 0.25000000 10
## 3099 0.10714286 0.25000000 10
## 3100 0.10714286 0.25000000 10
## 3101 0.10714286 0.25000000 10
## 3102 0.10714286 0.25000000 10
## 3103 0.10714286 0.25000000 10
## 3104 0.10714286 0.25000000 10
## 3105 0.10714286 0.25000000 10
## 3106 0.10714286 0.25000000 10
## 3107 0.10714286 0.25000000 10
## 3108 0.10714286 0.25000000 10
## 3109 0.10714286 0.25000000 10
## 3110 0.10714286 0.25000000 10
## 3111 0.10714286 0.25000000 10
## 3112 0.10714286 0.25000000 10
## 3113 0.10714286 0.25000000 10
## 3114 0.10714286 0.25000000 10
## 3115 0.10714286 0.25000000 10
## 3116 0.10714286 0.25000000 10
## 3117 0.10714286 0.25000000 10
## 3118 0.10714286 0.25000000 10
## 3119 0.10714286 0.25000000 10
## 3120 0.10714286 0.25000000 10
## 3121 0.23076923 0.23076923 8
## 3122 0.23076923 0.23076923 8
## 3123 0.23076923 0.23076923 8
## 3124 0.23076923 0.23076923 8
## 3125 0.23076923 0.23076923 8
## 3126 0.23076923 0.23076923 8
## 3127 0.23076923 0.23076923 8
## 3128 0.23076923 0.23076923 8
## 3129 0.23076923 0.23076923 8
## 3130 0.23076923 0.23076923 8
## 3131 0.23076923 0.23076923 8
## 3132 0.23076923 0.23076923 8
## 3133 0.23076923 0.23076923 8
## 3134 0.23076923 0.23076923 8
## 3135 0.23076923 0.23076923 8
## 3136 0.23076923 0.23076923 8
## 3137 0.23076923 0.23076923 8
## 3138 0.23076923 0.23076923 8
## 3139 0.23076923 0.23076923 8
## 3140 0.23076923 0.23076923 8
## 3141 0.23076923 0.23076923 8
## 3142 0.23076923 0.23076923 8
## 3143 0.23076923 0.23076923 8
## 3144 0.23076923 0.23076923 8
## 3145 0.60000000 0.60000000 8
## 3146 0.60000000 0.60000000 8
## 3147 0.60000000 0.60000000 8
## 3148 0.60000000 0.60000000 8
## 3149 0.60000000 0.60000000 8
## 3150 0.60000000 0.60000000 8
## 3151 0.60000000 0.60000000 8
## 3152 0.60000000 0.60000000 8
## 3153 0.60000000 0.60000000 8
## 3154 0.60000000 0.60000000 8
## 3155 0.60000000 0.60000000 8
## 3156 0.60000000 0.60000000 8
## 3157 0.60000000 0.60000000 8
## 3158 0.60000000 0.60000000 8
## 3159 0.60000000 0.60000000 8
## 3160 0.60000000 0.60000000 8
## 3161 0.60000000 0.60000000 8
## 3162 0.60000000 0.60000000 8
## 3163 0.60000000 0.60000000 8
## 3164 0.60000000 0.60000000 8
## 3165 0.60000000 0.60000000 8
## 3166 0.60000000 0.60000000 8
## 3167 0.60000000 0.60000000 8
## 3168 0.60000000 0.60000000 8
## 3169 0.08333333 0.33333333 6
## 3170 0.08333333 0.33333333 6
## 3171 0.08333333 0.33333333 6
## 3172 0.08333333 0.33333333 6
## 3173 0.08333333 0.33333333 6
## 3174 0.08333333 0.33333333 6
## 3175 0.08333333 0.33333333 6
## 3176 0.08333333 0.33333333 6
## 3177 0.08333333 0.33333333 6
## 3178 0.08333333 0.33333333 6
## 3179 0.08333333 0.33333333 6
## 3180 0.08333333 0.33333333 6
## 3181 0.08333333 0.33333333 6
## 3182 0.08333333 0.33333333 6
## 3183 0.08333333 0.33333333 6
## 3184 0.08333333 0.33333333 6
## 3185 0.08333333 0.33333333 6
## 3186 0.08333333 0.33333333 6
## 3187 0.08333333 0.33333333 6
## 3188 0.08333333 0.33333333 6
## 3189 0.08333333 0.33333333 6
## 3190 0.08333333 0.33333333 6
## 3191 0.08333333 0.33333333 6
## 3192 0.08333333 0.33333333 6
## 3193 0.45454545 0.45454545 8
## 3194 0.45454545 0.45454545 8
## 3195 0.45454545 0.45454545 8
## 3196 0.45454545 0.45454545 8
## 3197 0.45454545 0.45454545 8
## 3198 0.45454545 0.45454545 8
## 3199 0.45454545 0.45454545 8
## 3200 0.45454545 0.45454545 8
## 3201 0.45454545 0.45454545 8
## 3202 0.45454545 0.45454545 8
## 3203 0.45454545 0.45454545 8
## 3204 0.45454545 0.45454545 8
## 3205 0.45454545 0.45454545 8
## 3206 0.45454545 0.45454545 8
## 3207 0.45454545 0.45454545 8
## 3208 0.45454545 0.45454545 8
## 3209 0.45454545 0.45454545 8
## 3210 0.45454545 0.45454545 8
## 3211 0.45454545 0.45454545 8
## 3212 0.45454545 0.45454545 8
## 3213 0.45454545 0.45454545 8
## 3214 0.45454545 0.45454545 8
## 3215 0.45454545 0.45454545 8
## 3216 0.45454545 0.45454545 8
## 3217 0.55555556 0.55555556 7
## 3218 0.55555556 0.55555556 7
## 3219 0.55555556 0.55555556 7
## 3220 0.55555556 0.55555556 7
## 3221 0.55555556 0.55555556 7
## 3222 0.55555556 0.55555556 7
## 3223 0.55555556 0.55555556 7
## 3224 0.55555556 0.55555556 7
## 3225 0.55555556 0.55555556 7
## total_metaecosystem_bioarea_mm2 total_metaecosystem_Ble_indiv
## 1 96.92197 217.1512
## 2 96.92197 217.1512
## 3 96.92197 217.1512
## 4 96.92197 217.1512
## 5 96.92197 217.1512
## 6 96.92197 217.1512
## 7 96.92197 217.1512
## 8 96.92197 217.1512
## 9 96.92197 217.1512
## 10 96.92197 217.1512
## 11 96.92197 217.1512
## 12 96.92197 217.1512
## 13 96.92197 217.1512
## 14 96.92197 217.1512
## 15 96.92197 217.1512
## 16 96.92197 217.1512
## 17 96.92197 217.1512
## 18 96.92197 217.1512
## 19 96.92197 217.1512
## 20 96.92197 217.1512
## 21 96.92197 217.1512
## 22 96.92197 217.1512
## 23 96.92197 217.1512
## 24 96.92197 217.1512
## 25 152.90836 1037.7907
## 26 152.90836 1037.7907
## 27 152.90836 1037.7907
## 28 152.90836 1037.7907
## 29 152.90836 1037.7907
## 30 152.90836 1037.7907
## 31 152.90836 1037.7907
## 32 152.90836 1037.7907
## 33 152.90836 1037.7907
## 34 152.90836 1037.7907
## 35 152.90836 1037.7907
## 36 152.90836 1037.7907
## 37 152.90836 1037.7907
## 38 152.90836 1037.7907
## 39 152.90836 1037.7907
## 40 152.90836 1037.7907
## 41 152.90836 1037.7907
## 42 152.90836 1037.7907
## 43 152.90836 1037.7907
## 44 152.90836 1037.7907
## 45 152.90836 1037.7907
## 46 152.90836 1037.7907
## 47 152.90836 1037.7907
## 48 152.90836 1037.7907
## 49 163.09305 2398.2558
## 50 163.09305 2398.2558
## 51 163.09305 2398.2558
## 52 163.09305 2398.2558
## 53 163.09305 2398.2558
## 54 163.09305 2398.2558
## 55 163.09305 2398.2558
## 56 163.09305 2398.2558
## 57 163.09305 2398.2558
## 58 163.09305 2398.2558
## 59 163.09305 2398.2558
## 60 163.09305 2398.2558
## 61 163.09305 2398.2558
## 62 163.09305 2398.2558
## 63 163.09305 2398.2558
## 64 163.09305 2398.2558
## 65 163.09305 2398.2558
## 66 163.09305 2398.2558
## 67 163.09305 2398.2558
## 68 163.09305 2398.2558
## 69 163.09305 2398.2558
## 70 163.09305 2398.2558
## 71 163.09305 2398.2558
## 72 163.09305 2398.2558
## 73 182.03030 3174.4186
## 74 182.03030 3174.4186
## 75 182.03030 3174.4186
## 76 182.03030 3174.4186
## 77 182.03030 3174.4186
## 78 182.03030 3174.4186
## 79 182.03030 3174.4186
## 80 182.03030 3174.4186
## 81 182.03030 3174.4186
## 82 182.03030 3174.4186
## 83 182.03030 3174.4186
## 84 182.03030 3174.4186
## 85 182.03030 3174.4186
## 86 182.03030 3174.4186
## 87 182.03030 3174.4186
## 88 182.03030 3174.4186
## 89 182.03030 3174.4186
## 90 182.03030 3174.4186
## 91 182.03030 3174.4186
## 92 182.03030 3174.4186
## 93 182.03030 3174.4186
## 94 182.03030 3174.4186
## 95 182.03030 3174.4186
## 96 182.03030 3174.4186
## 97 140.28580 4006.3953
## 98 140.28580 4006.3953
## 99 140.28580 4006.3953
## 100 140.28580 4006.3953
## 101 140.28580 4006.3953
## 102 140.28580 4006.3953
## 103 140.28580 4006.3953
## 104 140.28580 4006.3953
## 105 140.28580 4006.3953
## 106 140.28580 4006.3953
## 107 140.28580 4006.3953
## 108 140.28580 4006.3953
## 109 140.28580 4006.3953
## 110 140.28580 4006.3953
## 111 140.28580 4006.3953
## 112 140.28580 4006.3953
## 113 140.28580 4006.3953
## 114 140.28580 4006.3953
## 115 140.28580 4006.3953
## 116 140.28580 4006.3953
## 117 140.28580 4006.3953
## 118 140.28580 4006.3953
## 119 140.28580 4006.3953
## 120 140.28580 4006.3953
## 121 117.28324 3750.0000
## 122 117.28324 3750.0000
## 123 117.28324 3750.0000
## 124 117.28324 3750.0000
## 125 117.28324 3750.0000
## 126 117.28324 3750.0000
## 127 117.28324 3750.0000
## 128 117.28324 3750.0000
## 129 117.28324 3750.0000
## 130 117.28324 3750.0000
## 131 117.28324 3750.0000
## 132 117.28324 3750.0000
## 133 117.28324 3750.0000
## 134 117.28324 3750.0000
## 135 117.28324 3750.0000
## 136 117.28324 3750.0000
## 137 117.28324 3750.0000
## 138 117.28324 3750.0000
## 139 117.28324 3750.0000
## 140 117.28324 3750.0000
## 141 117.28324 3750.0000
## 142 117.28324 3750.0000
## 143 117.28324 3750.0000
## 144 117.28324 3750.0000
## 145 103.80974 2986.9186
## 146 103.80974 2986.9186
## 147 103.80974 2986.9186
## 148 103.80974 2986.9186
## 149 103.80974 2986.9186
## 150 103.80974 2986.9186
## 151 103.80974 2986.9186
## 152 103.80974 2986.9186
## 153 103.80974 2986.9186
## 154 103.80974 2986.9186
## 155 103.80974 2986.9186
## 156 103.80974 2986.9186
## 157 103.80974 2986.9186
## 158 103.80974 2986.9186
## 159 103.80974 2986.9186
## 160 103.80974 2986.9186
## 161 103.80974 2986.9186
## 162 103.80974 2986.9186
## 163 103.80974 2986.9186
## 164 103.80974 2986.9186
## 165 103.80974 2986.9186
## 166 103.80974 2986.9186
## 167 103.80974 2986.9186
## 168 103.80974 2986.9186
## 169 92.60172 1748.5465
## 170 92.60172 1748.5465
## 171 92.60172 1748.5465
## 172 92.60172 1748.5465
## 173 92.60172 1748.5465
## 174 92.60172 1748.5465
## 175 92.60172 1748.5465
## 176 92.60172 1748.5465
## 177 92.60172 1748.5465
## 178 92.60172 1748.5465
## 179 92.60172 1748.5465
## 180 92.60172 1748.5465
## 181 92.60172 1748.5465
## 182 92.60172 1748.5465
## 183 92.60172 1748.5465
## 184 92.60172 1748.5465
## 185 92.60172 1748.5465
## 186 92.60172 1748.5465
## 187 92.60172 1748.5465
## 188 92.60172 1748.5465
## 189 92.60172 1748.5465
## 190 92.60172 1748.5465
## 191 92.60172 1748.5465
## 192 92.60172 1748.5465
## 193 96.92197 217.1512
## 194 96.92197 217.1512
## 195 96.92197 217.1512
## 196 96.92197 217.1512
## 197 96.92197 217.1512
## 198 96.92197 217.1512
## 199 96.92197 217.1512
## 200 96.92197 217.1512
## 201 96.92197 217.1512
## 202 96.92197 217.1512
## 203 96.92197 217.1512
## 204 96.92197 217.1512
## 205 96.92197 217.1512
## 206 96.92197 217.1512
## 207 96.92197 217.1512
## 208 96.92197 217.1512
## 209 96.92197 217.1512
## 210 96.92197 217.1512
## 211 96.92197 217.1512
## 212 96.92197 217.1512
## 213 96.92197 217.1512
## 214 96.92197 217.1512
## 215 96.92197 217.1512
## 216 96.92197 217.1512
## 217 229.78020 5537.7907
## 218 229.78020 5537.7907
## 219 229.78020 5537.7907
## 220 229.78020 5537.7907
## 221 229.78020 5537.7907
## 222 229.78020 5537.7907
## 223 229.78020 5537.7907
## 224 229.78020 5537.7907
## 225 229.78020 5537.7907
## 226 229.78020 5537.7907
## 227 229.78020 5537.7907
## 228 229.78020 5537.7907
## 229 229.78020 5537.7907
## 230 229.78020 5537.7907
## 231 229.78020 5537.7907
## 232 229.78020 5537.7907
## 233 229.78020 5537.7907
## 234 229.78020 5537.7907
## 235 229.78020 5537.7907
## 236 229.78020 5537.7907
## 237 229.78020 5537.7907
## 238 229.78020 5537.7907
## 239 229.78020 5537.7907
## 240 229.78020 5537.7907
## 241 133.25628 2904.0698
## 242 133.25628 2904.0698
## 243 133.25628 2904.0698
## 244 133.25628 2904.0698
## 245 133.25628 2904.0698
## 246 133.25628 2904.0698
## 247 133.25628 2904.0698
## 248 133.25628 2904.0698
## 249 133.25628 2904.0698
## 250 133.25628 2904.0698
## 251 133.25628 2904.0698
## 252 133.25628 2904.0698
## 253 133.25628 2904.0698
## 254 133.25628 2904.0698
## 255 133.25628 2904.0698
## 256 133.25628 2904.0698
## 257 133.25628 2904.0698
## 258 133.25628 2904.0698
## 259 133.25628 2904.0698
## 260 133.25628 2904.0698
## 261 133.25628 2904.0698
## 262 133.25628 2904.0698
## 263 133.25628 2904.0698
## 264 133.25628 2904.0698
## 265 209.35334 4752.9070
## 266 209.35334 4752.9070
## 267 209.35334 4752.9070
## 268 209.35334 4752.9070
## 269 209.35334 4752.9070
## 270 209.35334 4752.9070
## 271 209.35334 4752.9070
## 272 209.35334 4752.9070
## 273 209.35334 4752.9070
## 274 209.35334 4752.9070
## 275 209.35334 4752.9070
## 276 209.35334 4752.9070
## 277 209.35334 4752.9070
## 278 209.35334 4752.9070
## 279 209.35334 4752.9070
## 280 209.35334 4752.9070
## 281 209.35334 4752.9070
## 282 209.35334 4752.9070
## 283 209.35334 4752.9070
## 284 209.35334 4752.9070
## 285 209.35334 4752.9070
## 286 209.35334 4752.9070
## 287 209.35334 4752.9070
## 288 209.35334 4752.9070
## 289 176.95269 3430.8140
## 290 176.95269 3430.8140
## 291 176.95269 3430.8140
## 292 176.95269 3430.8140
## 293 176.95269 3430.8140
## 294 176.95269 3430.8140
## 295 176.95269 3430.8140
## 296 176.95269 3430.8140
## 297 176.95269 3430.8140
## 298 176.95269 3430.8140
## 299 176.95269 3430.8140
## 300 176.95269 3430.8140
## 301 176.95269 3430.8140
## 302 176.95269 3430.8140
## 303 176.95269 3430.8140
## 304 176.95269 3430.8140
## 305 176.95269 3430.8140
## 306 176.95269 3430.8140
## 307 176.95269 3430.8140
## 308 176.95269 3430.8140
## 309 176.95269 3430.8140
## 310 176.95269 3430.8140
## 311 176.95269 3430.8140
## 312 176.95269 3430.8140
## 313 119.42234 2659.8837
## 314 119.42234 2659.8837
## 315 119.42234 2659.8837
## 316 119.42234 2659.8837
## 317 119.42234 2659.8837
## 318 119.42234 2659.8837
## 319 119.42234 2659.8837
## 320 119.42234 2659.8837
## 321 119.42234 2659.8837
## 322 119.42234 2659.8837
## 323 119.42234 2659.8837
## 324 119.42234 2659.8837
## 325 119.42234 2659.8837
## 326 119.42234 2659.8837
## 327 119.42234 2659.8837
## 328 119.42234 2659.8837
## 329 119.42234 2659.8837
## 330 119.42234 2659.8837
## 331 119.42234 2659.8837
## 332 119.42234 2659.8837
## 333 119.42234 2659.8837
## 334 119.42234 2659.8837
## 335 119.42234 2659.8837
## 336 119.42234 2659.8837
## 337 105.58980 4984.0116
## 338 105.58980 4984.0116
## 339 105.58980 4984.0116
## 340 105.58980 4984.0116
## 341 105.58980 4984.0116
## 342 105.58980 4984.0116
## 343 105.58980 4984.0116
## 344 105.58980 4984.0116
## 345 105.58980 4984.0116
## 346 105.58980 4984.0116
## 347 105.58980 4984.0116
## 348 105.58980 4984.0116
## 349 105.58980 4984.0116
## 350 105.58980 4984.0116
## 351 105.58980 4984.0116
## 352 105.58980 4984.0116
## 353 105.58980 4984.0116
## 354 105.58980 4984.0116
## 355 105.58980 4984.0116
## 356 105.58980 4984.0116
## 357 105.58980 4984.0116
## 358 105.58980 4984.0116
## 359 105.58980 4984.0116
## 360 105.58980 4984.0116
## 361 70.36451 2376.4535
## 362 70.36451 2376.4535
## 363 70.36451 2376.4535
## 364 70.36451 2376.4535
## 365 70.36451 2376.4535
## 366 70.36451 2376.4535
## 367 70.36451 2376.4535
## 368 70.36451 2376.4535
## 369 70.36451 2376.4535
## 370 70.36451 2376.4535
## 371 70.36451 2376.4535
## 372 70.36451 2376.4535
## 373 70.36451 2376.4535
## 374 70.36451 2376.4535
## 375 70.36451 2376.4535
## 376 70.36451 2376.4535
## 377 70.36451 2376.4535
## 378 70.36451 2376.4535
## 379 70.36451 2376.4535
## 380 70.36451 2376.4535
## 381 70.36451 2376.4535
## 382 70.36451 2376.4535
## 383 70.36451 2376.4535
## 384 70.36451 2376.4535
## 385 96.92197 217.1512
## 386 96.92197 217.1512
## 387 96.92197 217.1512
## 388 96.92197 217.1512
## 389 96.92197 217.1512
## 390 96.92197 217.1512
## 391 96.92197 217.1512
## 392 96.92197 217.1512
## 393 96.92197 217.1512
## 394 96.92197 217.1512
## 395 96.92197 217.1512
## 396 96.92197 217.1512
## 397 96.92197 217.1512
## 398 96.92197 217.1512
## 399 96.92197 217.1512
## 400 96.92197 217.1512
## 401 96.92197 217.1512
## 402 96.92197 217.1512
## 403 96.92197 217.1512
## 404 96.92197 217.1512
## 405 96.92197 217.1512
## 406 96.92197 217.1512
## 407 96.92197 217.1512
## 408 96.92197 217.1512
## 409 184.49614 3488.3721
## 410 184.49614 3488.3721
## 411 184.49614 3488.3721
## 412 184.49614 3488.3721
## 413 184.49614 3488.3721
## 414 184.49614 3488.3721
## 415 184.49614 3488.3721
## 416 184.49614 3488.3721
## 417 184.49614 3488.3721
## 418 184.49614 3488.3721
## 419 184.49614 3488.3721
## 420 184.49614 3488.3721
## 421 184.49614 3488.3721
## 422 184.49614 3488.3721
## 423 184.49614 3488.3721
## 424 184.49614 3488.3721
## 425 184.49614 3488.3721
## 426 184.49614 3488.3721
## 427 184.49614 3488.3721
## 428 184.49614 3488.3721
## 429 184.49614 3488.3721
## 430 184.49614 3488.3721
## 431 184.49614 3488.3721
## 432 184.49614 3488.3721
## 433 183.48227 3715.1163
## 434 183.48227 3715.1163
## 435 183.48227 3715.1163
## 436 183.48227 3715.1163
## 437 183.48227 3715.1163
## 438 183.48227 3715.1163
## 439 183.48227 3715.1163
## 440 183.48227 3715.1163
## 441 183.48227 3715.1163
## 442 183.48227 3715.1163
## 443 183.48227 3715.1163
## 444 183.48227 3715.1163
## 445 183.48227 3715.1163
## 446 183.48227 3715.1163
## 447 183.48227 3715.1163
## 448 183.48227 3715.1163
## 449 183.48227 3715.1163
## 450 183.48227 3715.1163
## 451 183.48227 3715.1163
## 452 183.48227 3715.1163
## 453 183.48227 3715.1163
## 454 183.48227 3715.1163
## 455 183.48227 3715.1163
## 456 183.48227 3715.1163
## 457 141.08208 4491.2791
## 458 141.08208 4491.2791
## 459 141.08208 4491.2791
## 460 141.08208 4491.2791
## 461 141.08208 4491.2791
## 462 141.08208 4491.2791
## 463 141.08208 4491.2791
## 464 141.08208 4491.2791
## 465 141.08208 4491.2791
## 466 141.08208 4491.2791
## 467 141.08208 4491.2791
## 468 141.08208 4491.2791
## 469 141.08208 4491.2791
## 470 141.08208 4491.2791
## 471 141.08208 4491.2791
## 472 141.08208 4491.2791
## 473 141.08208 4491.2791
## 474 141.08208 4491.2791
## 475 141.08208 4491.2791
## 476 141.08208 4491.2791
## 477 141.08208 4491.2791
## 478 141.08208 4491.2791
## 479 141.08208 4491.2791
## 480 141.08208 4491.2791
## 481 156.15050 5768.0233
## 482 156.15050 5768.0233
## 483 156.15050 5768.0233
## 484 156.15050 5768.0233
## 485 156.15050 5768.0233
## 486 156.15050 5768.0233
## 487 156.15050 5768.0233
## 488 156.15050 5768.0233
## 489 156.15050 5768.0233
## 490 156.15050 5768.0233
## 491 156.15050 5768.0233
## 492 156.15050 5768.0233
## 493 156.15050 5768.0233
## 494 156.15050 5768.0233
## 495 156.15050 5768.0233
## 496 156.15050 5768.0233
## 497 156.15050 5768.0233
## 498 156.15050 5768.0233
## 499 156.15050 5768.0233
## 500 156.15050 5768.0233
## 501 156.15050 5768.0233
## 502 156.15050 5768.0233
## 503 156.15050 5768.0233
## 504 156.15050 5768.0233
## 505 140.12740 7709.3023
## 506 140.12740 7709.3023
## 507 140.12740 7709.3023
## 508 140.12740 7709.3023
## 509 140.12740 7709.3023
## 510 140.12740 7709.3023
## 511 140.12740 7709.3023
## 512 140.12740 7709.3023
## 513 140.12740 7709.3023
## 514 140.12740 7709.3023
## 515 140.12740 7709.3023
## 516 140.12740 7709.3023
## 517 140.12740 7709.3023
## 518 140.12740 7709.3023
## 519 140.12740 7709.3023
## 520 140.12740 7709.3023
## 521 140.12740 7709.3023
## 522 140.12740 7709.3023
## 523 140.12740 7709.3023
## 524 140.12740 7709.3023
## 525 140.12740 7709.3023
## 526 140.12740 7709.3023
## 527 140.12740 7709.3023
## 528 140.12740 7709.3023
## 529 100.60675 3771.8023
## 530 100.60675 3771.8023
## 531 100.60675 3771.8023
## 532 100.60675 3771.8023
## 533 100.60675 3771.8023
## 534 100.60675 3771.8023
## 535 100.60675 3771.8023
## 536 100.60675 3771.8023
## 537 100.60675 3771.8023
## 538 100.60675 3771.8023
## 539 100.60675 3771.8023
## 540 100.60675 3771.8023
## 541 100.60675 3771.8023
## 542 100.60675 3771.8023
## 543 100.60675 3771.8023
## 544 100.60675 3771.8023
## 545 100.60675 3771.8023
## 546 100.60675 3771.8023
## 547 100.60675 3771.8023
## 548 100.60675 3771.8023
## 549 100.60675 3771.8023
## 550 100.60675 3771.8023
## 551 100.60675 3771.8023
## 552 100.60675 3771.8023
## 553 141.11066 2180.2326
## 554 141.11066 2180.2326
## 555 141.11066 2180.2326
## 556 141.11066 2180.2326
## 557 141.11066 2180.2326
## 558 141.11066 2180.2326
## 559 141.11066 2180.2326
## 560 141.11066 2180.2326
## 561 141.11066 2180.2326
## 562 141.11066 2180.2326
## 563 141.11066 2180.2326
## 564 141.11066 2180.2326
## 565 141.11066 2180.2326
## 566 141.11066 2180.2326
## 567 141.11066 2180.2326
## 568 141.11066 2180.2326
## 569 141.11066 2180.2326
## 570 141.11066 2180.2326
## 571 141.11066 2180.2326
## 572 141.11066 2180.2326
## 573 141.11066 2180.2326
## 574 141.11066 2180.2326
## 575 141.11066 2180.2326
## 576 141.11066 2180.2326
## 577 96.92197 217.1512
## 578 96.92197 217.1512
## 579 96.92197 217.1512
## 580 96.92197 217.1512
## 581 96.92197 217.1512
## 582 96.92197 217.1512
## 583 96.92197 217.1512
## 584 96.92197 217.1512
## 585 96.92197 217.1512
## 586 96.92197 217.1512
## 587 96.92197 217.1512
## 588 96.92197 217.1512
## 589 96.92197 217.1512
## 590 96.92197 217.1512
## 591 96.92197 217.1512
## 592 96.92197 217.1512
## 593 96.92197 217.1512
## 594 96.92197 217.1512
## 595 96.92197 217.1512
## 596 96.92197 217.1512
## 597 96.92197 217.1512
## 598 96.92197 217.1512
## 599 96.92197 217.1512
## 600 96.92197 217.1512
## 601 115.91533 1308.1395
## 602 115.91533 1308.1395
## 603 115.91533 1308.1395
## 604 115.91533 1308.1395
## 605 115.91533 1308.1395
## 606 115.91533 1308.1395
## 607 115.91533 1308.1395
## 608 115.91533 1308.1395
## 609 115.91533 1308.1395
## 610 115.91533 1308.1395
## 611 115.91533 1308.1395
## 612 115.91533 1308.1395
## 613 115.91533 1308.1395
## 614 115.91533 1308.1395
## 615 115.91533 1308.1395
## 616 115.91533 1308.1395
## 617 115.91533 1308.1395
## 618 115.91533 1308.1395
## 619 115.91533 1308.1395
## 620 115.91533 1308.1395
## 621 115.91533 1308.1395
## 622 115.91533 1308.1395
## 623 115.91533 1308.1395
## 624 115.91533 1308.1395
## 625 161.40812 1308.1395
## 626 161.40812 1308.1395
## 627 161.40812 1308.1395
## 628 161.40812 1308.1395
## 629 161.40812 1308.1395
## 630 161.40812 1308.1395
## 631 161.40812 1308.1395
## 632 161.40812 1308.1395
## 633 161.40812 1308.1395
## 634 161.40812 1308.1395
## 635 161.40812 1308.1395
## 636 161.40812 1308.1395
## 637 161.40812 1308.1395
## 638 161.40812 1308.1395
## 639 161.40812 1308.1395
## 640 161.40812 1308.1395
## 641 161.40812 1308.1395
## 642 161.40812 1308.1395
## 643 161.40812 1308.1395
## 644 161.40812 1308.1395
## 645 161.40812 1308.1395
## 646 161.40812 1308.1395
## 647 161.40812 1308.1395
## 648 161.40812 1308.1395
## 649 97.61383 2398.2558
## 650 97.61383 2398.2558
## 651 97.61383 2398.2558
## 652 97.61383 2398.2558
## 653 97.61383 2398.2558
## 654 97.61383 2398.2558
## 655 97.61383 2398.2558
## 656 97.61383 2398.2558
## 657 97.61383 2398.2558
## 658 97.61383 2398.2558
## 659 97.61383 2398.2558
## 660 97.61383 2398.2558
## 661 97.61383 2398.2558
## 662 97.61383 2398.2558
## 663 97.61383 2398.2558
## 664 97.61383 2398.2558
## 665 97.61383 2398.2558
## 666 97.61383 2398.2558
## 667 97.61383 2398.2558
## 668 97.61383 2398.2558
## 669 97.61383 2398.2558
## 670 97.61383 2398.2558
## 671 97.61383 2398.2558
## 672 97.61383 2398.2558
## 673 155.88072 4102.3256
## 674 155.88072 4102.3256
## 675 155.88072 4102.3256
## 676 155.88072 4102.3256
## 677 155.88072 4102.3256
## 678 155.88072 4102.3256
## 679 155.88072 4102.3256
## 680 155.88072 4102.3256
## 681 155.88072 4102.3256
## 682 155.88072 4102.3256
## 683 155.88072 4102.3256
## 684 155.88072 4102.3256
## 685 155.88072 4102.3256
## 686 155.88072 4102.3256
## 687 155.88072 4102.3256
## 688 155.88072 4102.3256
## 689 155.88072 4102.3256
## 690 155.88072 4102.3256
## 691 155.88072 4102.3256
## 692 155.88072 4102.3256
## 693 155.88072 4102.3256
## 694 155.88072 4102.3256
## 695 155.88072 4102.3256
## 696 155.88072 4102.3256
## 697 60.30225 4360.4651
## 698 60.30225 4360.4651
## 699 60.30225 4360.4651
## 700 60.30225 4360.4651
## 701 60.30225 4360.4651
## 702 60.30225 4360.4651
## 703 60.30225 4360.4651
## 704 60.30225 4360.4651
## 705 60.30225 4360.4651
## 706 60.30225 4360.4651
## 707 60.30225 4360.4651
## 708 60.30225 4360.4651
## 709 60.30225 4360.4651
## 710 60.30225 4360.4651
## 711 60.30225 4360.4651
## 712 60.30225 4360.4651
## 713 60.30225 4360.4651
## 714 60.30225 4360.4651
## 715 60.30225 4360.4651
## 716 60.30225 4360.4651
## 717 60.30225 4360.4651
## 718 60.30225 4360.4651
## 719 60.30225 4360.4651
## 720 60.30225 4360.4651
## 721 41.31407 1308.1395
## 722 41.31407 1308.1395
## 723 41.31407 1308.1395
## 724 41.31407 1308.1395
## 725 41.31407 1308.1395
## 726 41.31407 1308.1395
## 727 41.31407 1308.1395
## 728 41.31407 1308.1395
## 729 41.31407 1308.1395
## 730 41.31407 1308.1395
## 731 41.31407 1308.1395
## 732 41.31407 1308.1395
## 733 41.31407 1308.1395
## 734 41.31407 1308.1395
## 735 41.31407 1308.1395
## 736 41.31407 1308.1395
## 737 41.31407 1308.1395
## 738 41.31407 1308.1395
## 739 41.31407 1308.1395
## 740 41.31407 1308.1395
## 741 41.31407 1308.1395
## 742 41.31407 1308.1395
## 743 41.31407 1308.1395
## 744 41.31407 1308.1395
## 745 32.52923 2180.2326
## 746 32.52923 2180.2326
## 747 32.52923 2180.2326
## 748 32.52923 2180.2326
## 749 32.52923 2180.2326
## 750 32.52923 2180.2326
## 751 32.52923 2180.2326
## 752 32.52923 2180.2326
## 753 32.52923 2180.2326
## 754 32.52923 2180.2326
## 755 32.52923 2180.2326
## 756 32.52923 2180.2326
## 757 32.52923 2180.2326
## 758 32.52923 2180.2326
## 759 32.52923 2180.2326
## 760 32.52923 2180.2326
## 761 32.52923 2180.2326
## 762 32.52923 2180.2326
## 763 32.52923 2180.2326
## 764 32.52923 2180.2326
## 765 32.52923 2180.2326
## 766 32.52923 2180.2326
## 767 32.52923 2180.2326
## 768 32.52923 2180.2326
## 769 96.92197 217.1512
## 770 96.92197 217.1512
## 771 96.92197 217.1512
## 772 96.92197 217.1512
## 773 96.92197 217.1512
## 774 96.92197 217.1512
## 775 96.92197 217.1512
## 776 96.92197 217.1512
## 777 96.92197 217.1512
## 778 96.92197 217.1512
## 779 96.92197 217.1512
## 780 96.92197 217.1512
## 781 96.92197 217.1512
## 782 96.92197 217.1512
## 783 96.92197 217.1512
## 784 96.92197 217.1512
## 785 96.92197 217.1512
## 786 96.92197 217.1512
## 787 96.92197 217.1512
## 788 96.92197 217.1512
## 789 96.92197 217.1512
## 790 96.92197 217.1512
## 791 96.92197 217.1512
## 792 96.92197 217.1512
## 793 120.64726 1308.1395
## 794 120.64726 1308.1395
## 795 120.64726 1308.1395
## 796 120.64726 1308.1395
## 797 120.64726 1308.1395
## 798 120.64726 1308.1395
## 799 120.64726 1308.1395
## 800 120.64726 1308.1395
## 801 120.64726 1308.1395
## 802 120.64726 1308.1395
## 803 120.64726 1308.1395
## 804 120.64726 1308.1395
## 805 120.64726 1308.1395
## 806 120.64726 1308.1395
## 807 120.64726 1308.1395
## 808 120.64726 1308.1395
## 809 120.64726 1308.1395
## 810 120.64726 1308.1395
## 811 120.64726 1308.1395
## 812 120.64726 1308.1395
## 813 120.64726 1308.1395
## 814 120.64726 1308.1395
## 815 120.64726 1308.1395
## 816 120.64726 1308.1395
## 817 154.62321 2398.2558
## 818 154.62321 2398.2558
## 819 154.62321 2398.2558
## 820 154.62321 2398.2558
## 821 154.62321 2398.2558
## 822 154.62321 2398.2558
## 823 154.62321 2398.2558
## 824 154.62321 2398.2558
## 825 154.62321 2398.2558
## 826 154.62321 2398.2558
## 827 154.62321 2398.2558
## 828 154.62321 2398.2558
## 829 154.62321 2398.2558
## 830 154.62321 2398.2558
## 831 154.62321 2398.2558
## 832 154.62321 2398.2558
## 833 154.62321 2398.2558
## 834 154.62321 2398.2558
## 835 154.62321 2398.2558
## 836 154.62321 2398.2558
## 837 154.62321 2398.2558
## 838 154.62321 2398.2558
## 839 154.62321 2398.2558
## 840 154.62321 2398.2558
## 841 190.63761 2398.2558
## 842 190.63761 2398.2558
## 843 190.63761 2398.2558
## 844 190.63761 2398.2558
## 845 190.63761 2398.2558
## 846 190.63761 2398.2558
## 847 190.63761 2398.2558
## 848 190.63761 2398.2558
## 849 190.63761 2398.2558
## 850 190.63761 2398.2558
## 851 190.63761 2398.2558
## 852 190.63761 2398.2558
## 853 190.63761 2398.2558
## 854 190.63761 2398.2558
## 855 190.63761 2398.2558
## 856 190.63761 2398.2558
## 857 190.63761 2398.2558
## 858 190.63761 2398.2558
## 859 190.63761 2398.2558
## 860 190.63761 2398.2558
## 861 190.63761 2398.2558
## 862 190.63761 2398.2558
## 863 190.63761 2398.2558
## 864 190.63761 2398.2558
## 865 214.36970 1512.2093
## 866 214.36970 1512.2093
## 867 214.36970 1512.2093
## 868 214.36970 1512.2093
## 869 214.36970 1512.2093
## 870 214.36970 1512.2093
## 871 214.36970 1512.2093
## 872 214.36970 1512.2093
## 873 214.36970 1512.2093
## 874 214.36970 1512.2093
## 875 214.36970 1512.2093
## 876 214.36970 1512.2093
## 877 214.36970 1512.2093
## 878 214.36970 1512.2093
## 879 214.36970 1512.2093
## 880 214.36970 1512.2093
## 881 214.36970 1512.2093
## 882 214.36970 1512.2093
## 883 214.36970 1512.2093
## 884 214.36970 1512.2093
## 885 214.36970 1512.2093
## 886 214.36970 1512.2093
## 887 214.36970 1512.2093
## 888 214.36970 1512.2093
## 889 171.23111 2162.7907
## 890 171.23111 2162.7907
## 891 171.23111 2162.7907
## 892 171.23111 2162.7907
## 893 171.23111 2162.7907
## 894 171.23111 2162.7907
## 895 171.23111 2162.7907
## 896 171.23111 2162.7907
## 897 171.23111 2162.7907
## 898 171.23111 2162.7907
## 899 171.23111 2162.7907
## 900 171.23111 2162.7907
## 901 171.23111 2162.7907
## 902 171.23111 2162.7907
## 903 171.23111 2162.7907
## 904 171.23111 2162.7907
## 905 171.23111 2162.7907
## 906 171.23111 2162.7907
## 907 171.23111 2162.7907
## 908 171.23111 2162.7907
## 909 171.23111 2162.7907
## 910 171.23111 2162.7907
## 911 171.23111 2162.7907
## 912 171.23111 2162.7907
## 913 151.16653 4547.9651
## 914 151.16653 4547.9651
## 915 151.16653 4547.9651
## 916 151.16653 4547.9651
## 917 151.16653 4547.9651
## 918 151.16653 4547.9651
## 919 151.16653 4547.9651
## 920 151.16653 4547.9651
## 921 151.16653 4547.9651
## 922 151.16653 4547.9651
## 923 151.16653 4547.9651
## 924 151.16653 4547.9651
## 925 151.16653 4547.9651
## 926 151.16653 4547.9651
## 927 151.16653 4547.9651
## 928 151.16653 4547.9651
## 929 151.16653 4547.9651
## 930 151.16653 4547.9651
## 931 151.16653 4547.9651
## 932 151.16653 4547.9651
## 933 151.16653 4547.9651
## 934 151.16653 4547.9651
## 935 151.16653 4547.9651
## 936 151.16653 4547.9651
## 937 111.09645 3920.0581
## 938 111.09645 3920.0581
## 939 111.09645 3920.0581
## 940 111.09645 3920.0581
## 941 111.09645 3920.0581
## 942 111.09645 3920.0581
## 943 111.09645 3920.0581
## 944 111.09645 3920.0581
## 945 111.09645 3920.0581
## 946 111.09645 3920.0581
## 947 111.09645 3920.0581
## 948 111.09645 3920.0581
## 949 111.09645 3920.0581
## 950 111.09645 3920.0581
## 951 111.09645 3920.0581
## 952 111.09645 3920.0581
## 953 111.09645 3920.0581
## 954 111.09645 3920.0581
## 955 111.09645 3920.0581
## 956 111.09645 3920.0581
## 957 111.09645 3920.0581
## 958 111.09645 3920.0581
## 959 111.09645 3920.0581
## 960 111.09645 3920.0581
## 961 96.92197 217.1512
## 962 96.92197 217.1512
## 963 96.92197 217.1512
## 964 96.92197 217.1512
## 965 96.92197 217.1512
## 966 96.92197 217.1512
## 967 96.92197 217.1512
## 968 96.92197 217.1512
## 969 96.92197 217.1512
## 970 96.92197 217.1512
## 971 96.92197 217.1512
## 972 96.92197 217.1512
## 973 96.92197 217.1512
## 974 96.92197 217.1512
## 975 96.92197 217.1512
## 976 96.92197 217.1512
## 977 96.92197 217.1512
## 978 96.92197 217.1512
## 979 96.92197 217.1512
## 980 96.92197 217.1512
## 981 96.92197 217.1512
## 982 96.92197 217.1512
## 983 96.92197 217.1512
## 984 96.92197 217.1512
## 985 147.30148 819.7674
## 986 147.30148 819.7674
## 987 147.30148 819.7674
## 988 147.30148 819.7674
## 989 147.30148 819.7674
## 990 147.30148 819.7674
## 991 147.30148 819.7674
## 992 147.30148 819.7674
## 993 147.30148 819.7674
## 994 147.30148 819.7674
## 995 147.30148 819.7674
## 996 147.30148 819.7674
## 997 147.30148 819.7674
## 998 147.30148 819.7674
## 999 147.30148 819.7674
## 1000 147.30148 819.7674
## 1001 147.30148 819.7674
## 1002 147.30148 819.7674
## 1003 147.30148 819.7674
## 1004 147.30148 819.7674
## 1005 147.30148 819.7674
## 1006 147.30148 819.7674
## 1007 147.30148 819.7674
## 1008 147.30148 819.7674
## 1009 179.42053 2886.6279
## 1010 179.42053 2886.6279
## 1011 179.42053 2886.6279
## 1012 179.42053 2886.6279
## 1013 179.42053 2886.6279
## 1014 179.42053 2886.6279
## 1015 179.42053 2886.6279
## 1016 179.42053 2886.6279
## 1017 179.42053 2886.6279
## 1018 179.42053 2886.6279
## 1019 179.42053 2886.6279
## 1020 179.42053 2886.6279
## 1021 179.42053 2886.6279
## 1022 179.42053 2886.6279
## 1023 179.42053 2886.6279
## 1024 179.42053 2886.6279
## 1025 179.42053 2886.6279
## 1026 179.42053 2886.6279
## 1027 179.42053 2886.6279
## 1028 179.42053 2886.6279
## 1029 179.42053 2886.6279
## 1030 179.42053 2886.6279
## 1031 179.42053 2886.6279
## 1032 179.42053 2886.6279
## 1033 198.43677 3392.4419
## 1034 198.43677 3392.4419
## 1035 198.43677 3392.4419
## 1036 198.43677 3392.4419
## 1037 198.43677 3392.4419
## 1038 198.43677 3392.4419
## 1039 198.43677 3392.4419
## 1040 198.43677 3392.4419
## 1041 198.43677 3392.4419
## 1042 198.43677 3392.4419
## 1043 198.43677 3392.4419
## 1044 198.43677 3392.4419
## 1045 198.43677 3392.4419
## 1046 198.43677 3392.4419
## 1047 198.43677 3392.4419
## 1048 198.43677 3392.4419
## 1049 198.43677 3392.4419
## 1050 198.43677 3392.4419
## 1051 198.43677 3392.4419
## 1052 198.43677 3392.4419
## 1053 198.43677 3392.4419
## 1054 198.43677 3392.4419
## 1055 198.43677 3392.4419
## 1056 198.43677 3392.4419
## 1057 130.67795 3584.3023
## 1058 130.67795 3584.3023
## 1059 130.67795 3584.3023
## 1060 130.67795 3584.3023
## 1061 130.67795 3584.3023
## 1062 130.67795 3584.3023
## 1063 130.67795 3584.3023
## 1064 130.67795 3584.3023
## 1065 130.67795 3584.3023
## 1066 130.67795 3584.3023
## 1067 130.67795 3584.3023
## 1068 130.67795 3584.3023
## 1069 130.67795 3584.3023
## 1070 130.67795 3584.3023
## 1071 130.67795 3584.3023
## 1072 130.67795 3584.3023
## 1073 130.67795 3584.3023
## 1074 130.67795 3584.3023
## 1075 130.67795 3584.3023
## 1076 130.67795 3584.3023
## 1077 130.67795 3584.3023
## 1078 130.67795 3584.3023
## 1079 130.67795 3584.3023
## 1080 130.67795 3584.3023
## 1081 116.52410 3750.0000
## 1082 116.52410 3750.0000
## 1083 116.52410 3750.0000
## 1084 116.52410 3750.0000
## 1085 116.52410 3750.0000
## 1086 116.52410 3750.0000
## 1087 116.52410 3750.0000
## 1088 116.52410 3750.0000
## 1089 116.52410 3750.0000
## 1090 116.52410 3750.0000
## 1091 116.52410 3750.0000
## 1092 116.52410 3750.0000
## 1093 116.52410 3750.0000
## 1094 116.52410 3750.0000
## 1095 116.52410 3750.0000
## 1096 116.52410 3750.0000
## 1097 116.52410 3750.0000
## 1098 116.52410 3750.0000
## 1099 116.52410 3750.0000
## 1100 116.52410 3750.0000
## 1101 116.52410 3750.0000
## 1102 116.52410 3750.0000
## 1103 116.52410 3750.0000
## 1104 116.52410 3750.0000
## 1105 102.17022 2768.8953
## 1106 102.17022 2768.8953
## 1107 102.17022 2768.8953
## 1108 102.17022 2768.8953
## 1109 102.17022 2768.8953
## 1110 102.17022 2768.8953
## 1111 102.17022 2768.8953
## 1112 102.17022 2768.8953
## 1113 102.17022 2768.8953
## 1114 102.17022 2768.8953
## 1115 102.17022 2768.8953
## 1116 102.17022 2768.8953
## 1117 102.17022 2768.8953
## 1118 102.17022 2768.8953
## 1119 102.17022 2768.8953
## 1120 102.17022 2768.8953
## 1121 102.17022 2768.8953
## 1122 102.17022 2768.8953
## 1123 102.17022 2768.8953
## 1124 102.17022 2768.8953
## 1125 102.17022 2768.8953
## 1126 102.17022 2768.8953
## 1127 102.17022 2768.8953
## 1128 102.17022 2768.8953
## 1129 91.77408 1748.5465
## 1130 91.77408 1748.5465
## 1131 91.77408 1748.5465
## 1132 91.77408 1748.5465
## 1133 91.77408 1748.5465
## 1134 91.77408 1748.5465
## 1135 91.77408 1748.5465
## 1136 91.77408 1748.5465
## 1137 91.77408 1748.5465
## 1138 91.77408 1748.5465
## 1139 91.77408 1748.5465
## 1140 91.77408 1748.5465
## 1141 91.77408 1748.5465
## 1142 91.77408 1748.5465
## 1143 91.77408 1748.5465
## 1144 91.77408 1748.5465
## 1145 91.77408 1748.5465
## 1146 91.77408 1748.5465
## 1147 91.77408 1748.5465
## 1148 91.77408 1748.5465
## 1149 91.77408 1748.5465
## 1150 91.77408 1748.5465
## 1151 91.77408 1748.5465
## 1152 91.77408 1748.5465
## 1153 96.92197 217.1512
## 1154 96.92197 217.1512
## 1155 96.92197 217.1512
## 1156 96.92197 217.1512
## 1157 96.92197 217.1512
## 1158 96.92197 217.1512
## 1159 96.92197 217.1512
## 1160 96.92197 217.1512
## 1161 96.92197 217.1512
## 1162 96.92197 217.1512
## 1163 96.92197 217.1512
## 1164 96.92197 217.1512
## 1165 96.92197 217.1512
## 1166 96.92197 217.1512
## 1167 96.92197 217.1512
## 1168 96.92197 217.1512
## 1169 96.92197 217.1512
## 1170 96.92197 217.1512
## 1171 96.92197 217.1512
## 1172 96.92197 217.1512
## 1173 96.92197 217.1512
## 1174 96.92197 217.1512
## 1175 96.92197 217.1512
## 1176 96.92197 217.1512
## 1177 224.17332 5319.7674
## 1178 224.17332 5319.7674
## 1179 224.17332 5319.7674
## 1180 224.17332 5319.7674
## 1181 224.17332 5319.7674
## 1182 224.17332 5319.7674
## 1183 224.17332 5319.7674
## 1184 224.17332 5319.7674
## 1185 224.17332 5319.7674
## 1186 224.17332 5319.7674
## 1187 224.17332 5319.7674
## 1188 224.17332 5319.7674
## 1189 224.17332 5319.7674
## 1190 224.17332 5319.7674
## 1191 224.17332 5319.7674
## 1192 224.17332 5319.7674
## 1193 224.17332 5319.7674
## 1194 224.17332 5319.7674
## 1195 224.17332 5319.7674
## 1196 224.17332 5319.7674
## 1197 224.17332 5319.7674
## 1198 224.17332 5319.7674
## 1199 224.17332 5319.7674
## 1200 224.17332 5319.7674
## 1201 149.58376 3392.4419
## 1202 149.58376 3392.4419
## 1203 149.58376 3392.4419
## 1204 149.58376 3392.4419
## 1205 149.58376 3392.4419
## 1206 149.58376 3392.4419
## 1207 149.58376 3392.4419
## 1208 149.58376 3392.4419
## 1209 149.58376 3392.4419
## 1210 149.58376 3392.4419
## 1211 149.58376 3392.4419
## 1212 149.58376 3392.4419
## 1213 149.58376 3392.4419
## 1214 149.58376 3392.4419
## 1215 149.58376 3392.4419
## 1216 149.58376 3392.4419
## 1217 149.58376 3392.4419
## 1218 149.58376 3392.4419
## 1219 149.58376 3392.4419
## 1220 149.58376 3392.4419
## 1221 149.58376 3392.4419
## 1222 149.58376 3392.4419
## 1223 149.58376 3392.4419
## 1224 149.58376 3392.4419
## 1225 225.75980 4970.9302
## 1226 225.75980 4970.9302
## 1227 225.75980 4970.9302
## 1228 225.75980 4970.9302
## 1229 225.75980 4970.9302
## 1230 225.75980 4970.9302
## 1231 225.75980 4970.9302
## 1232 225.75980 4970.9302
## 1233 225.75980 4970.9302
## 1234 225.75980 4970.9302
## 1235 225.75980 4970.9302
## 1236 225.75980 4970.9302
## 1237 225.75980 4970.9302
## 1238 225.75980 4970.9302
## 1239 225.75980 4970.9302
## 1240 225.75980 4970.9302
## 1241 225.75980 4970.9302
## 1242 225.75980 4970.9302
## 1243 225.75980 4970.9302
## 1244 225.75980 4970.9302
## 1245 225.75980 4970.9302
## 1246 225.75980 4970.9302
## 1247 225.75980 4970.9302
## 1248 225.75980 4970.9302
## 1249 167.34484 3008.7209
## 1250 167.34484 3008.7209
## 1251 167.34484 3008.7209
## 1252 167.34484 3008.7209
## 1253 167.34484 3008.7209
## 1254 167.34484 3008.7209
## 1255 167.34484 3008.7209
## 1256 167.34484 3008.7209
## 1257 167.34484 3008.7209
## 1258 167.34484 3008.7209
## 1259 167.34484 3008.7209
## 1260 167.34484 3008.7209
## 1261 167.34484 3008.7209
## 1262 167.34484 3008.7209
## 1263 167.34484 3008.7209
## 1264 167.34484 3008.7209
## 1265 167.34484 3008.7209
## 1266 167.34484 3008.7209
## 1267 167.34484 3008.7209
## 1268 167.34484 3008.7209
## 1269 167.34484 3008.7209
## 1270 167.34484 3008.7209
## 1271 167.34484 3008.7209
## 1272 167.34484 3008.7209
## 1273 118.66320 2659.8837
## 1274 118.66320 2659.8837
## 1275 118.66320 2659.8837
## 1276 118.66320 2659.8837
## 1277 118.66320 2659.8837
## 1278 118.66320 2659.8837
## 1279 118.66320 2659.8837
## 1280 118.66320 2659.8837
## 1281 118.66320 2659.8837
## 1282 118.66320 2659.8837
## 1283 118.66320 2659.8837
## 1284 118.66320 2659.8837
## 1285 118.66320 2659.8837
## 1286 118.66320 2659.8837
## 1287 118.66320 2659.8837
## 1288 118.66320 2659.8837
## 1289 118.66320 2659.8837
## 1290 118.66320 2659.8837
## 1291 118.66320 2659.8837
## 1292 118.66320 2659.8837
## 1293 118.66320 2659.8837
## 1294 118.66320 2659.8837
## 1295 118.66320 2659.8837
## 1296 118.66320 2659.8837
## 1297 103.95027 4765.9884
## 1298 103.95027 4765.9884
## 1299 103.95027 4765.9884
## 1300 103.95027 4765.9884
## 1301 103.95027 4765.9884
## 1302 103.95027 4765.9884
## 1303 103.95027 4765.9884
## 1304 103.95027 4765.9884
## 1305 103.95027 4765.9884
## 1306 103.95027 4765.9884
## 1307 103.95027 4765.9884
## 1308 103.95027 4765.9884
## 1309 103.95027 4765.9884
## 1310 103.95027 4765.9884
## 1311 103.95027 4765.9884
## 1312 103.95027 4765.9884
## 1313 103.95027 4765.9884
## 1314 103.95027 4765.9884
## 1315 103.95027 4765.9884
## 1316 103.95027 4765.9884
## 1317 103.95027 4765.9884
## 1318 103.95027 4765.9884
## 1319 103.95027 4765.9884
## 1320 103.95027 4765.9884
## 1321 69.53686 2376.4535
## 1322 69.53686 2376.4535
## 1323 69.53686 2376.4535
## 1324 69.53686 2376.4535
## 1325 69.53686 2376.4535
## 1326 69.53686 2376.4535
## 1327 69.53686 2376.4535
## 1328 69.53686 2376.4535
## 1329 69.53686 2376.4535
## 1330 69.53686 2376.4535
## 1331 69.53686 2376.4535
## 1332 69.53686 2376.4535
## 1333 69.53686 2376.4535
## 1334 69.53686 2376.4535
## 1335 69.53686 2376.4535
## 1336 69.53686 2376.4535
## 1337 69.53686 2376.4535
## 1338 69.53686 2376.4535
## 1339 69.53686 2376.4535
## 1340 69.53686 2376.4535
## 1341 69.53686 2376.4535
## 1342 69.53686 2376.4535
## 1343 69.53686 2376.4535
## 1344 69.53686 2376.4535
## 1345 96.92197 217.1512
## 1346 96.92197 217.1512
## 1347 96.92197 217.1512
## 1348 96.92197 217.1512
## 1349 96.92197 217.1512
## 1350 96.92197 217.1512
## 1351 96.92197 217.1512
## 1352 96.92197 217.1512
## 1353 96.92197 217.1512
## 1354 96.92197 217.1512
## 1355 96.92197 217.1512
## 1356 96.92197 217.1512
## 1357 96.92197 217.1512
## 1358 96.92197 217.1512
## 1359 96.92197 217.1512
## 1360 96.92197 217.1512
## 1361 96.92197 217.1512
## 1362 96.92197 217.1512
## 1363 96.92197 217.1512
## 1364 96.92197 217.1512
## 1365 96.92197 217.1512
## 1366 96.92197 217.1512
## 1367 96.92197 217.1512
## 1368 96.92197 217.1512
## 1369 178.88926 3270.3488
## 1370 178.88926 3270.3488
## 1371 178.88926 3270.3488
## 1372 178.88926 3270.3488
## 1373 178.88926 3270.3488
## 1374 178.88926 3270.3488
## 1375 178.88926 3270.3488
## 1376 178.88926 3270.3488
## 1377 178.88926 3270.3488
## 1378 178.88926 3270.3488
## 1379 178.88926 3270.3488
## 1380 178.88926 3270.3488
## 1381 178.88926 3270.3488
## 1382 178.88926 3270.3488
## 1383 178.88926 3270.3488
## 1384 178.88926 3270.3488
## 1385 178.88926 3270.3488
## 1386 178.88926 3270.3488
## 1387 178.88926 3270.3488
## 1388 178.88926 3270.3488
## 1389 178.88926 3270.3488
## 1390 178.88926 3270.3488
## 1391 178.88926 3270.3488
## 1392 178.88926 3270.3488
## 1393 199.80974 4203.4884
## 1394 199.80974 4203.4884
## 1395 199.80974 4203.4884
## 1396 199.80974 4203.4884
## 1397 199.80974 4203.4884
## 1398 199.80974 4203.4884
## 1399 199.80974 4203.4884
## 1400 199.80974 4203.4884
## 1401 199.80974 4203.4884
## 1402 199.80974 4203.4884
## 1403 199.80974 4203.4884
## 1404 199.80974 4203.4884
## 1405 199.80974 4203.4884
## 1406 199.80974 4203.4884
## 1407 199.80974 4203.4884
## 1408 199.80974 4203.4884
## 1409 199.80974 4203.4884
## 1410 199.80974 4203.4884
## 1411 199.80974 4203.4884
## 1412 199.80974 4203.4884
## 1413 199.80974 4203.4884
## 1414 199.80974 4203.4884
## 1415 199.80974 4203.4884
## 1416 199.80974 4203.4884
## 1417 157.48855 4709.3023
## 1418 157.48855 4709.3023
## 1419 157.48855 4709.3023
## 1420 157.48855 4709.3023
## 1421 157.48855 4709.3023
## 1422 157.48855 4709.3023
## 1423 157.48855 4709.3023
## 1424 157.48855 4709.3023
## 1425 157.48855 4709.3023
## 1426 157.48855 4709.3023
## 1427 157.48855 4709.3023
## 1428 157.48855 4709.3023
## 1429 157.48855 4709.3023
## 1430 157.48855 4709.3023
## 1431 157.48855 4709.3023
## 1432 157.48855 4709.3023
## 1433 157.48855 4709.3023
## 1434 157.48855 4709.3023
## 1435 157.48855 4709.3023
## 1436 157.48855 4709.3023
## 1437 157.48855 4709.3023
## 1438 157.48855 4709.3023
## 1439 157.48855 4709.3023
## 1440 157.48855 4709.3023
## 1441 146.54265 5345.9302
## 1442 146.54265 5345.9302
## 1443 146.54265 5345.9302
## 1444 146.54265 5345.9302
## 1445 146.54265 5345.9302
## 1446 146.54265 5345.9302
## 1447 146.54265 5345.9302
## 1448 146.54265 5345.9302
## 1449 146.54265 5345.9302
## 1450 146.54265 5345.9302
## 1451 146.54265 5345.9302
## 1452 146.54265 5345.9302
## 1453 146.54265 5345.9302
## 1454 146.54265 5345.9302
## 1455 146.54265 5345.9302
## 1456 146.54265 5345.9302
## 1457 146.54265 5345.9302
## 1458 146.54265 5345.9302
## 1459 146.54265 5345.9302
## 1460 146.54265 5345.9302
## 1461 146.54265 5345.9302
## 1462 146.54265 5345.9302
## 1463 146.54265 5345.9302
## 1464 146.54265 5345.9302
## 1465 139.36826 7709.3023
## 1466 139.36826 7709.3023
## 1467 139.36826 7709.3023
## 1468 139.36826 7709.3023
## 1469 139.36826 7709.3023
## 1470 139.36826 7709.3023
## 1471 139.36826 7709.3023
## 1472 139.36826 7709.3023
## 1473 139.36826 7709.3023
## 1474 139.36826 7709.3023
## 1475 139.36826 7709.3023
## 1476 139.36826 7709.3023
## 1477 139.36826 7709.3023
## 1478 139.36826 7709.3023
## 1479 139.36826 7709.3023
## 1480 139.36826 7709.3023
## 1481 139.36826 7709.3023
## 1482 139.36826 7709.3023
## 1483 139.36826 7709.3023
## 1484 139.36826 7709.3023
## 1485 139.36826 7709.3023
## 1486 139.36826 7709.3023
## 1487 139.36826 7709.3023
## 1488 139.36826 7709.3023
## 1489 98.96723 3553.7791
## 1490 98.96723 3553.7791
## 1491 98.96723 3553.7791
## 1492 98.96723 3553.7791
## 1493 98.96723 3553.7791
## 1494 98.96723 3553.7791
## 1495 98.96723 3553.7791
## 1496 98.96723 3553.7791
## 1497 98.96723 3553.7791
## 1498 98.96723 3553.7791
## 1499 98.96723 3553.7791
## 1500 98.96723 3553.7791
## 1501 98.96723 3553.7791
## 1502 98.96723 3553.7791
## 1503 98.96723 3553.7791
## 1504 98.96723 3553.7791
## 1505 98.96723 3553.7791
## 1506 98.96723 3553.7791
## 1507 98.96723 3553.7791
## 1508 98.96723 3553.7791
## 1509 98.96723 3553.7791
## 1510 98.96723 3553.7791
## 1511 98.96723 3553.7791
## 1512 98.96723 3553.7791
## 1513 140.28302 2180.2326
## 1514 140.28302 2180.2326
## 1515 140.28302 2180.2326
## 1516 140.28302 2180.2326
## 1517 140.28302 2180.2326
## 1518 140.28302 2180.2326
## 1519 140.28302 2180.2326
## 1520 140.28302 2180.2326
## 1521 140.28302 2180.2326
## 1522 140.28302 2180.2326
## 1523 140.28302 2180.2326
## 1524 140.28302 2180.2326
## 1525 140.28302 2180.2326
## 1526 140.28302 2180.2326
## 1527 140.28302 2180.2326
## 1528 140.28302 2180.2326
## 1529 140.28302 2180.2326
## 1530 140.28302 2180.2326
## 1531 140.28302 2180.2326
## 1532 140.28302 2180.2326
## 1533 140.28302 2180.2326
## 1534 140.28302 2180.2326
## 1535 140.28302 2180.2326
## 1536 140.28302 2180.2326
## 1537 96.92197 217.1512
## 1538 96.92197 217.1512
## 1539 96.92197 217.1512
## 1540 96.92197 217.1512
## 1541 96.92197 217.1512
## 1542 96.92197 217.1512
## 1543 96.92197 217.1512
## 1544 96.92197 217.1512
## 1545 96.92197 217.1512
## 1546 96.92197 217.1512
## 1547 96.92197 217.1512
## 1548 96.92197 217.1512
## 1549 96.92197 217.1512
## 1550 96.92197 217.1512
## 1551 96.92197 217.1512
## 1552 96.92197 217.1512
## 1553 96.92197 217.1512
## 1554 96.92197 217.1512
## 1555 96.92197 217.1512
## 1556 96.92197 217.1512
## 1557 96.92197 217.1512
## 1558 96.92197 217.1512
## 1559 96.92197 217.1512
## 1560 96.92197 217.1512
## 1561 110.30845 1090.1163
## 1562 110.30845 1090.1163
## 1563 110.30845 1090.1163
## 1564 110.30845 1090.1163
## 1565 110.30845 1090.1163
## 1566 110.30845 1090.1163
## 1567 110.30845 1090.1163
## 1568 110.30845 1090.1163
## 1569 110.30845 1090.1163
## 1570 110.30845 1090.1163
## 1571 110.30845 1090.1163
## 1572 110.30845 1090.1163
## 1573 110.30845 1090.1163
## 1574 110.30845 1090.1163
## 1575 110.30845 1090.1163
## 1576 110.30845 1090.1163
## 1577 110.30845 1090.1163
## 1578 110.30845 1090.1163
## 1579 110.30845 1090.1163
## 1580 110.30845 1090.1163
## 1581 110.30845 1090.1163
## 1582 110.30845 1090.1163
## 1583 110.30845 1090.1163
## 1584 110.30845 1090.1163
## 1585 177.73560 1796.5116
## 1586 177.73560 1796.5116
## 1587 177.73560 1796.5116
## 1588 177.73560 1796.5116
## 1589 177.73560 1796.5116
## 1590 177.73560 1796.5116
## 1591 177.73560 1796.5116
## 1592 177.73560 1796.5116
## 1593 177.73560 1796.5116
## 1594 177.73560 1796.5116
## 1595 177.73560 1796.5116
## 1596 177.73560 1796.5116
## 1597 177.73560 1796.5116
## 1598 177.73560 1796.5116
## 1599 177.73560 1796.5116
## 1600 177.73560 1796.5116
## 1601 177.73560 1796.5116
## 1602 177.73560 1796.5116
## 1603 177.73560 1796.5116
## 1604 177.73560 1796.5116
## 1605 177.73560 1796.5116
## 1606 177.73560 1796.5116
## 1607 177.73560 1796.5116
## 1608 177.73560 1796.5116
## 1609 114.02030 2616.2791
## 1610 114.02030 2616.2791
## 1611 114.02030 2616.2791
## 1612 114.02030 2616.2791
## 1613 114.02030 2616.2791
## 1614 114.02030 2616.2791
## 1615 114.02030 2616.2791
## 1616 114.02030 2616.2791
## 1617 114.02030 2616.2791
## 1618 114.02030 2616.2791
## 1619 114.02030 2616.2791
## 1620 114.02030 2616.2791
## 1621 114.02030 2616.2791
## 1622 114.02030 2616.2791
## 1623 114.02030 2616.2791
## 1624 114.02030 2616.2791
## 1625 114.02030 2616.2791
## 1626 114.02030 2616.2791
## 1627 114.02030 2616.2791
## 1628 114.02030 2616.2791
## 1629 114.02030 2616.2791
## 1630 114.02030 2616.2791
## 1631 114.02030 2616.2791
## 1632 114.02030 2616.2791
## 1633 146.27287 3680.2326
## 1634 146.27287 3680.2326
## 1635 146.27287 3680.2326
## 1636 146.27287 3680.2326
## 1637 146.27287 3680.2326
## 1638 146.27287 3680.2326
## 1639 146.27287 3680.2326
## 1640 146.27287 3680.2326
## 1641 146.27287 3680.2326
## 1642 146.27287 3680.2326
## 1643 146.27287 3680.2326
## 1644 146.27287 3680.2326
## 1645 146.27287 3680.2326
## 1646 146.27287 3680.2326
## 1647 146.27287 3680.2326
## 1648 146.27287 3680.2326
## 1649 146.27287 3680.2326
## 1650 146.27287 3680.2326
## 1651 146.27287 3680.2326
## 1652 146.27287 3680.2326
## 1653 146.27287 3680.2326
## 1654 146.27287 3680.2326
## 1655 146.27287 3680.2326
## 1656 146.27287 3680.2326
## 1657 59.54311 4360.4651
## 1658 59.54311 4360.4651
## 1659 59.54311 4360.4651
## 1660 59.54311 4360.4651
## 1661 59.54311 4360.4651
## 1662 59.54311 4360.4651
## 1663 59.54311 4360.4651
## 1664 59.54311 4360.4651
## 1665 59.54311 4360.4651
## 1666 59.54311 4360.4651
## 1667 59.54311 4360.4651
## 1668 59.54311 4360.4651
## 1669 59.54311 4360.4651
## 1670 59.54311 4360.4651
## 1671 59.54311 4360.4651
## 1672 59.54311 4360.4651
## 1673 59.54311 4360.4651
## 1674 59.54311 4360.4651
## 1675 59.54311 4360.4651
## 1676 59.54311 4360.4651
## 1677 59.54311 4360.4651
## 1678 59.54311 4360.4651
## 1679 59.54311 4360.4651
## 1680 59.54311 4360.4651
## 1681 39.67455 1090.1163
## 1682 39.67455 1090.1163
## 1683 39.67455 1090.1163
## 1684 39.67455 1090.1163
## 1685 39.67455 1090.1163
## 1686 39.67455 1090.1163
## 1687 39.67455 1090.1163
## 1688 39.67455 1090.1163
## 1689 39.67455 1090.1163
## 1690 39.67455 1090.1163
## 1691 39.67455 1090.1163
## 1692 39.67455 1090.1163
## 1693 39.67455 1090.1163
## 1694 39.67455 1090.1163
## 1695 39.67455 1090.1163
## 1696 39.67455 1090.1163
## 1697 39.67455 1090.1163
## 1698 39.67455 1090.1163
## 1699 39.67455 1090.1163
## 1700 39.67455 1090.1163
## 1701 39.67455 1090.1163
## 1702 39.67455 1090.1163
## 1703 39.67455 1090.1163
## 1704 39.67455 1090.1163
## 1705 31.70159 2180.2326
## 1706 31.70159 2180.2326
## 1707 31.70159 2180.2326
## 1708 31.70159 2180.2326
## 1709 31.70159 2180.2326
## 1710 31.70159 2180.2326
## 1711 31.70159 2180.2326
## 1712 31.70159 2180.2326
## 1713 31.70159 2180.2326
## 1714 31.70159 2180.2326
## 1715 31.70159 2180.2326
## 1716 31.70159 2180.2326
## 1717 31.70159 2180.2326
## 1718 31.70159 2180.2326
## 1719 31.70159 2180.2326
## 1720 31.70159 2180.2326
## 1721 31.70159 2180.2326
## 1722 31.70159 2180.2326
## 1723 31.70159 2180.2326
## 1724 31.70159 2180.2326
## 1725 31.70159 2180.2326
## 1726 31.70159 2180.2326
## 1727 31.70159 2180.2326
## 1728 31.70159 2180.2326
## 1729 96.92197 217.1512
## 1730 96.92197 217.1512
## 1731 96.92197 217.1512
## 1732 96.92197 217.1512
## 1733 96.92197 217.1512
## 1734 96.92197 217.1512
## 1735 96.92197 217.1512
## 1736 96.92197 217.1512
## 1737 96.92197 217.1512
## 1738 96.92197 217.1512
## 1739 96.92197 217.1512
## 1740 96.92197 217.1512
## 1741 96.92197 217.1512
## 1742 96.92197 217.1512
## 1743 96.92197 217.1512
## 1744 96.92197 217.1512
## 1745 96.92197 217.1512
## 1746 96.92197 217.1512
## 1747 96.92197 217.1512
## 1748 96.92197 217.1512
## 1749 96.92197 217.1512
## 1750 96.92197 217.1512
## 1751 96.92197 217.1512
## 1752 96.92197 217.1512
## 1753 115.04038 1090.1163
## 1754 115.04038 1090.1163
## 1755 115.04038 1090.1163
## 1756 115.04038 1090.1163
## 1757 115.04038 1090.1163
## 1758 115.04038 1090.1163
## 1759 115.04038 1090.1163
## 1760 115.04038 1090.1163
## 1761 115.04038 1090.1163
## 1762 115.04038 1090.1163
## 1763 115.04038 1090.1163
## 1764 115.04038 1090.1163
## 1765 115.04038 1090.1163
## 1766 115.04038 1090.1163
## 1767 115.04038 1090.1163
## 1768 115.04038 1090.1163
## 1769 115.04038 1090.1163
## 1770 115.04038 1090.1163
## 1771 115.04038 1090.1163
## 1772 115.04038 1090.1163
## 1773 115.04038 1090.1163
## 1774 115.04038 1090.1163
## 1775 115.04038 1090.1163
## 1776 115.04038 1090.1163
## 1777 170.95069 2886.6279
## 1778 170.95069 2886.6279
## 1779 170.95069 2886.6279
## 1780 170.95069 2886.6279
## 1781 170.95069 2886.6279
## 1782 170.95069 2886.6279
## 1783 170.95069 2886.6279
## 1784 170.95069 2886.6279
## 1785 170.95069 2886.6279
## 1786 170.95069 2886.6279
## 1787 170.95069 2886.6279
## 1788 170.95069 2886.6279
## 1789 170.95069 2886.6279
## 1790 170.95069 2886.6279
## 1791 170.95069 2886.6279
## 1792 170.95069 2886.6279
## 1793 170.95069 2886.6279
## 1794 170.95069 2886.6279
## 1795 170.95069 2886.6279
## 1796 170.95069 2886.6279
## 1797 170.95069 2886.6279
## 1798 170.95069 2886.6279
## 1799 170.95069 2886.6279
## 1800 170.95069 2886.6279
## 1801 207.04408 2616.2791
## 1802 207.04408 2616.2791
## 1803 207.04408 2616.2791
## 1804 207.04408 2616.2791
## 1805 207.04408 2616.2791
## 1806 207.04408 2616.2791
## 1807 207.04408 2616.2791
## 1808 207.04408 2616.2791
## 1809 207.04408 2616.2791
## 1810 207.04408 2616.2791
## 1811 207.04408 2616.2791
## 1812 207.04408 2616.2791
## 1813 207.04408 2616.2791
## 1814 207.04408 2616.2791
## 1815 207.04408 2616.2791
## 1816 207.04408 2616.2791
## 1817 207.04408 2616.2791
## 1818 207.04408 2616.2791
## 1819 207.04408 2616.2791
## 1820 207.04408 2616.2791
## 1821 207.04408 2616.2791
## 1822 207.04408 2616.2791
## 1823 207.04408 2616.2791
## 1824 207.04408 2616.2791
## 1825 204.76185 1090.1163
## 1826 204.76185 1090.1163
## 1827 204.76185 1090.1163
## 1828 204.76185 1090.1163
## 1829 204.76185 1090.1163
## 1830 204.76185 1090.1163
## 1831 204.76185 1090.1163
## 1832 204.76185 1090.1163
## 1833 204.76185 1090.1163
## 1834 204.76185 1090.1163
## 1835 204.76185 1090.1163
## 1836 204.76185 1090.1163
## 1837 204.76185 1090.1163
## 1838 204.76185 1090.1163
## 1839 204.76185 1090.1163
## 1840 204.76185 1090.1163
## 1841 204.76185 1090.1163
## 1842 204.76185 1090.1163
## 1843 204.76185 1090.1163
## 1844 204.76185 1090.1163
## 1845 204.76185 1090.1163
## 1846 204.76185 1090.1163
## 1847 204.76185 1090.1163
## 1848 204.76185 1090.1163
## 1849 170.47197 2162.7907
## 1850 170.47197 2162.7907
## 1851 170.47197 2162.7907
## 1852 170.47197 2162.7907
## 1853 170.47197 2162.7907
## 1854 170.47197 2162.7907
## 1855 170.47197 2162.7907
## 1856 170.47197 2162.7907
## 1857 170.47197 2162.7907
## 1858 170.47197 2162.7907
## 1859 170.47197 2162.7907
## 1860 170.47197 2162.7907
## 1861 170.47197 2162.7907
## 1862 170.47197 2162.7907
## 1863 170.47197 2162.7907
## 1864 170.47197 2162.7907
## 1865 170.47197 2162.7907
## 1866 170.47197 2162.7907
## 1867 170.47197 2162.7907
## 1868 170.47197 2162.7907
## 1869 170.47197 2162.7907
## 1870 170.47197 2162.7907
## 1871 170.47197 2162.7907
## 1872 170.47197 2162.7907
## 1873 149.52700 4329.9419
## 1874 149.52700 4329.9419
## 1875 149.52700 4329.9419
## 1876 149.52700 4329.9419
## 1877 149.52700 4329.9419
## 1878 149.52700 4329.9419
## 1879 149.52700 4329.9419
## 1880 149.52700 4329.9419
## 1881 149.52700 4329.9419
## 1882 149.52700 4329.9419
## 1883 149.52700 4329.9419
## 1884 149.52700 4329.9419
## 1885 149.52700 4329.9419
## 1886 149.52700 4329.9419
## 1887 149.52700 4329.9419
## 1888 149.52700 4329.9419
## 1889 149.52700 4329.9419
## 1890 149.52700 4329.9419
## 1891 149.52700 4329.9419
## 1892 149.52700 4329.9419
## 1893 149.52700 4329.9419
## 1894 149.52700 4329.9419
## 1895 149.52700 4329.9419
## 1896 149.52700 4329.9419
## 1897 110.26880 3920.0581
## 1898 110.26880 3920.0581
## 1899 110.26880 3920.0581
## 1900 110.26880 3920.0581
## 1901 110.26880 3920.0581
## 1902 110.26880 3920.0581
## 1903 110.26880 3920.0581
## 1904 110.26880 3920.0581
## 1905 110.26880 3920.0581
## 1906 110.26880 3920.0581
## 1907 110.26880 3920.0581
## 1908 110.26880 3920.0581
## 1909 110.26880 3920.0581
## 1910 110.26880 3920.0581
## 1911 110.26880 3920.0581
## 1912 110.26880 3920.0581
## 1913 110.26880 3920.0581
## 1914 110.26880 3920.0581
## 1915 110.26880 3920.0581
## 1916 110.26880 3920.0581
## 1917 110.26880 3920.0581
## 1918 110.26880 3920.0581
## 1919 110.26880 3920.0581
## 1920 110.26880 3920.0581
## 1921 96.92197 217.1512
## 1922 96.92197 217.1512
## 1923 96.92197 217.1512
## 1924 96.92197 217.1512
## 1925 96.92197 217.1512
## 1926 96.92197 217.1512
## 1927 96.92197 217.1512
## 1928 96.92197 217.1512
## 1929 96.92197 217.1512
## 1930 96.92197 217.1512
## 1931 96.92197 217.1512
## 1932 96.92197 217.1512
## 1933 96.92197 217.1512
## 1934 96.92197 217.1512
## 1935 96.92197 217.1512
## 1936 96.92197 217.1512
## 1937 96.92197 217.1512
## 1938 96.92197 217.1512
## 1939 96.92197 217.1512
## 1940 96.92197 217.1512
## 1941 96.92197 217.1512
## 1942 96.92197 217.1512
## 1943 96.92197 217.1512
## 1944 96.92197 217.1512
## 1945 151.39694 1473.8372
## 1946 151.39694 1473.8372
## 1947 151.39694 1473.8372
## 1948 151.39694 1473.8372
## 1949 151.39694 1473.8372
## 1950 151.39694 1473.8372
## 1951 151.39694 1473.8372
## 1952 151.39694 1473.8372
## 1953 151.39694 1473.8372
## 1954 151.39694 1473.8372
## 1955 151.39694 1473.8372
## 1956 151.39694 1473.8372
## 1957 151.39694 1473.8372
## 1958 151.39694 1473.8372
## 1959 151.39694 1473.8372
## 1960 151.39694 1473.8372
## 1961 151.39694 1473.8372
## 1962 151.39694 1473.8372
## 1963 151.39694 1473.8372
## 1964 151.39694 1473.8372
## 1965 151.39694 1473.8372
## 1966 151.39694 1473.8372
## 1967 151.39694 1473.8372
## 1968 151.39694 1473.8372
## 1969 158.17674 2502.9070
## 1970 158.17674 2502.9070
## 1971 158.17674 2502.9070
## 1972 158.17674 2502.9070
## 1973 158.17674 2502.9070
## 1974 158.17674 2502.9070
## 1975 158.17674 2502.9070
## 1976 158.17674 2502.9070
## 1977 158.17674 2502.9070
## 1978 158.17674 2502.9070
## 1979 158.17674 2502.9070
## 1980 158.17674 2502.9070
## 1981 158.17674 2502.9070
## 1982 158.17674 2502.9070
## 1983 158.17674 2502.9070
## 1984 158.17674 2502.9070
## 1985 158.17674 2502.9070
## 1986 158.17674 2502.9070
## 1987 158.17674 2502.9070
## 1988 158.17674 2502.9070
## 1989 158.17674 2502.9070
## 1990 158.17674 2502.9070
## 1991 158.17674 2502.9070
## 1992 158.17674 2502.9070
## 1993 196.58628 3388.9535
## 1994 196.58628 3388.9535
## 1995 196.58628 3388.9535
## 1996 196.58628 3388.9535
## 1997 196.58628 3388.9535
## 1998 196.58628 3388.9535
## 1999 196.58628 3388.9535
## 2000 196.58628 3388.9535
## 2001 196.58628 3388.9535
## 2002 196.58628 3388.9535
## 2003 196.58628 3388.9535
## 2004 196.58628 3388.9535
## 2005 196.58628 3388.9535
## 2006 196.58628 3388.9535
## 2007 196.58628 3388.9535
## 2008 196.58628 3388.9535
## 2009 196.58628 3388.9535
## 2010 196.58628 3388.9535
## 2011 196.58628 3388.9535
## 2012 196.58628 3388.9535
## 2013 196.58628 3388.9535
## 2014 196.58628 3388.9535
## 2015 196.58628 3388.9535
## 2016 196.58628 3388.9535
## 2017 136.02956 3584.3023
## 2018 136.02956 3584.3023
## 2019 136.02956 3584.3023
## 2020 136.02956 3584.3023
## 2021 136.02956 3584.3023
## 2022 136.02956 3584.3023
## 2023 136.02956 3584.3023
## 2024 136.02956 3584.3023
## 2025 136.02956 3584.3023
## 2026 136.02956 3584.3023
## 2027 136.02956 3584.3023
## 2028 136.02956 3584.3023
## 2029 136.02956 3584.3023
## 2030 136.02956 3584.3023
## 2031 136.02956 3584.3023
## 2032 136.02956 3584.3023
## 2033 136.02956 3584.3023
## 2034 136.02956 3584.3023
## 2035 136.02956 3584.3023
## 2036 136.02956 3584.3023
## 2037 136.02956 3584.3023
## 2038 136.02956 3584.3023
## 2039 136.02956 3584.3023
## 2040 136.02956 3584.3023
## 2041 116.45107 3750.0000
## 2042 116.45107 3750.0000
## 2043 116.45107 3750.0000
## 2044 116.45107 3750.0000
## 2045 116.45107 3750.0000
## 2046 116.45107 3750.0000
## 2047 116.45107 3750.0000
## 2048 116.45107 3750.0000
## 2049 116.45107 3750.0000
## 2050 116.45107 3750.0000
## 2051 116.45107 3750.0000
## 2052 116.45107 3750.0000
## 2053 116.45107 3750.0000
## 2054 116.45107 3750.0000
## 2055 116.45107 3750.0000
## 2056 116.45107 3750.0000
## 2057 116.45107 3750.0000
## 2058 116.45107 3750.0000
## 2059 116.45107 3750.0000
## 2060 116.45107 3750.0000
## 2061 116.45107 3750.0000
## 2062 116.45107 3750.0000
## 2063 116.45107 3750.0000
## 2064 116.45107 3750.0000
## 2065 102.05987 2768.8953
## 2066 102.05987 2768.8953
## 2067 102.05987 2768.8953
## 2068 102.05987 2768.8953
## 2069 102.05987 2768.8953
## 2070 102.05987 2768.8953
## 2071 102.05987 2768.8953
## 2072 102.05987 2768.8953
## 2073 102.05987 2768.8953
## 2074 102.05987 2768.8953
## 2075 102.05987 2768.8953
## 2076 102.05987 2768.8953
## 2077 102.05987 2768.8953
## 2078 102.05987 2768.8953
## 2079 102.05987 2768.8953
## 2080 102.05987 2768.8953
## 2081 102.05987 2768.8953
## 2082 102.05987 2768.8953
## 2083 102.05987 2768.8953
## 2084 102.05987 2768.8953
## 2085 102.05987 2768.8953
## 2086 102.05987 2768.8953
## 2087 102.05987 2768.8953
## 2088 102.05987 2768.8953
## 2089 93.36916 1748.5465
## 2090 93.36916 1748.5465
## 2091 93.36916 1748.5465
## 2092 93.36916 1748.5465
## 2093 93.36916 1748.5465
## 2094 93.36916 1748.5465
## 2095 93.36916 1748.5465
## 2096 93.36916 1748.5465
## 2097 93.36916 1748.5465
## 2098 93.36916 1748.5465
## 2099 93.36916 1748.5465
## 2100 93.36916 1748.5465
## 2101 93.36916 1748.5465
## 2102 93.36916 1748.5465
## 2103 93.36916 1748.5465
## 2104 93.36916 1748.5465
## 2105 93.36916 1748.5465
## 2106 93.36916 1748.5465
## 2107 93.36916 1748.5465
## 2108 93.36916 1748.5465
## 2109 93.36916 1748.5465
## 2110 93.36916 1748.5465
## 2111 93.36916 1748.5465
## 2112 93.36916 1748.5465
## 2113 96.92197 217.1512
## 2114 96.92197 217.1512
## 2115 96.92197 217.1512
## 2116 96.92197 217.1512
## 2117 96.92197 217.1512
## 2118 96.92197 217.1512
## 2119 96.92197 217.1512
## 2120 96.92197 217.1512
## 2121 96.92197 217.1512
## 2122 96.92197 217.1512
## 2123 96.92197 217.1512
## 2124 96.92197 217.1512
## 2125 96.92197 217.1512
## 2126 96.92197 217.1512
## 2127 96.92197 217.1512
## 2128 96.92197 217.1512
## 2129 96.92197 217.1512
## 2130 96.92197 217.1512
## 2131 96.92197 217.1512
## 2132 96.92197 217.1512
## 2133 96.92197 217.1512
## 2134 96.92197 217.1512
## 2135 96.92197 217.1512
## 2136 96.92197 217.1512
## 2137 228.26879 5973.8372
## 2138 228.26879 5973.8372
## 2139 228.26879 5973.8372
## 2140 228.26879 5973.8372
## 2141 228.26879 5973.8372
## 2142 228.26879 5973.8372
## 2143 228.26879 5973.8372
## 2144 228.26879 5973.8372
## 2145 228.26879 5973.8372
## 2146 228.26879 5973.8372
## 2147 228.26879 5973.8372
## 2148 228.26879 5973.8372
## 2149 228.26879 5973.8372
## 2150 228.26879 5973.8372
## 2151 228.26879 5973.8372
## 2152 228.26879 5973.8372
## 2153 228.26879 5973.8372
## 2154 228.26879 5973.8372
## 2155 228.26879 5973.8372
## 2156 228.26879 5973.8372
## 2157 228.26879 5973.8372
## 2158 228.26879 5973.8372
## 2159 228.26879 5973.8372
## 2160 228.26879 5973.8372
## 2161 128.33997 3008.7209
## 2162 128.33997 3008.7209
## 2163 128.33997 3008.7209
## 2164 128.33997 3008.7209
## 2165 128.33997 3008.7209
## 2166 128.33997 3008.7209
## 2167 128.33997 3008.7209
## 2168 128.33997 3008.7209
## 2169 128.33997 3008.7209
## 2170 128.33997 3008.7209
## 2171 128.33997 3008.7209
## 2172 128.33997 3008.7209
## 2173 128.33997 3008.7209
## 2174 128.33997 3008.7209
## 2175 128.33997 3008.7209
## 2176 128.33997 3008.7209
## 2177 128.33997 3008.7209
## 2178 128.33997 3008.7209
## 2179 128.33997 3008.7209
## 2180 128.33997 3008.7209
## 2181 128.33997 3008.7209
## 2182 128.33997 3008.7209
## 2183 128.33997 3008.7209
## 2184 128.33997 3008.7209
## 2185 223.90932 4967.4419
## 2186 223.90932 4967.4419
## 2187 223.90932 4967.4419
## 2188 223.90932 4967.4419
## 2189 223.90932 4967.4419
## 2190 223.90932 4967.4419
## 2191 223.90932 4967.4419
## 2192 223.90932 4967.4419
## 2193 223.90932 4967.4419
## 2194 223.90932 4967.4419
## 2195 223.90932 4967.4419
## 2196 223.90932 4967.4419
## 2197 223.90932 4967.4419
## 2198 223.90932 4967.4419
## 2199 223.90932 4967.4419
## 2200 223.90932 4967.4419
## 2201 223.90932 4967.4419
## 2202 223.90932 4967.4419
## 2203 223.90932 4967.4419
## 2204 223.90932 4967.4419
## 2205 223.90932 4967.4419
## 2206 223.90932 4967.4419
## 2207 223.90932 4967.4419
## 2208 223.90932 4967.4419
## 2209 172.69644 3008.7209
## 2210 172.69644 3008.7209
## 2211 172.69644 3008.7209
## 2212 172.69644 3008.7209
## 2213 172.69644 3008.7209
## 2214 172.69644 3008.7209
## 2215 172.69644 3008.7209
## 2216 172.69644 3008.7209
## 2217 172.69644 3008.7209
## 2218 172.69644 3008.7209
## 2219 172.69644 3008.7209
## 2220 172.69644 3008.7209
## 2221 172.69644 3008.7209
## 2222 172.69644 3008.7209
## 2223 172.69644 3008.7209
## 2224 172.69644 3008.7209
## 2225 172.69644 3008.7209
## 2226 172.69644 3008.7209
## 2227 172.69644 3008.7209
## 2228 172.69644 3008.7209
## 2229 172.69644 3008.7209
## 2230 172.69644 3008.7209
## 2231 172.69644 3008.7209
## 2232 172.69644 3008.7209
## 2233 118.59016 2659.8837
## 2234 118.59016 2659.8837
## 2235 118.59016 2659.8837
## 2236 118.59016 2659.8837
## 2237 118.59016 2659.8837
## 2238 118.59016 2659.8837
## 2239 118.59016 2659.8837
## 2240 118.59016 2659.8837
## 2241 118.59016 2659.8837
## 2242 118.59016 2659.8837
## 2243 118.59016 2659.8837
## 2244 118.59016 2659.8837
## 2245 118.59016 2659.8837
## 2246 118.59016 2659.8837
## 2247 118.59016 2659.8837
## 2248 118.59016 2659.8837
## 2249 118.59016 2659.8837
## 2250 118.59016 2659.8837
## 2251 118.59016 2659.8837
## 2252 118.59016 2659.8837
## 2253 118.59016 2659.8837
## 2254 118.59016 2659.8837
## 2255 118.59016 2659.8837
## 2256 118.59016 2659.8837
## 2257 103.83993 4765.9884
## 2258 103.83993 4765.9884
## 2259 103.83993 4765.9884
## 2260 103.83993 4765.9884
## 2261 103.83993 4765.9884
## 2262 103.83993 4765.9884
## 2263 103.83993 4765.9884
## 2264 103.83993 4765.9884
## 2265 103.83993 4765.9884
## 2266 103.83993 4765.9884
## 2267 103.83993 4765.9884
## 2268 103.83993 4765.9884
## 2269 103.83993 4765.9884
## 2270 103.83993 4765.9884
## 2271 103.83993 4765.9884
## 2272 103.83993 4765.9884
## 2273 103.83993 4765.9884
## 2274 103.83993 4765.9884
## 2275 103.83993 4765.9884
## 2276 103.83993 4765.9884
## 2277 103.83993 4765.9884
## 2278 103.83993 4765.9884
## 2279 103.83993 4765.9884
## 2280 103.83993 4765.9884
## 2281 71.13194 2376.4535
## 2282 71.13194 2376.4535
## 2283 71.13194 2376.4535
## 2284 71.13194 2376.4535
## 2285 71.13194 2376.4535
## 2286 71.13194 2376.4535
## 2287 71.13194 2376.4535
## 2288 71.13194 2376.4535
## 2289 71.13194 2376.4535
## 2290 71.13194 2376.4535
## 2291 71.13194 2376.4535
## 2292 71.13194 2376.4535
## 2293 71.13194 2376.4535
## 2294 71.13194 2376.4535
## 2295 71.13194 2376.4535
## 2296 71.13194 2376.4535
## 2297 71.13194 2376.4535
## 2298 71.13194 2376.4535
## 2299 71.13194 2376.4535
## 2300 71.13194 2376.4535
## 2301 71.13194 2376.4535
## 2302 71.13194 2376.4535
## 2303 71.13194 2376.4535
## 2304 71.13194 2376.4535
## 2305 96.92197 217.1512
## 2306 96.92197 217.1512
## 2307 96.92197 217.1512
## 2308 96.92197 217.1512
## 2309 96.92197 217.1512
## 2310 96.92197 217.1512
## 2311 96.92197 217.1512
## 2312 96.92197 217.1512
## 2313 96.92197 217.1512
## 2314 96.92197 217.1512
## 2315 96.92197 217.1512
## 2316 96.92197 217.1512
## 2317 96.92197 217.1512
## 2318 96.92197 217.1512
## 2319 96.92197 217.1512
## 2320 96.92197 217.1512
## 2321 96.92197 217.1512
## 2322 96.92197 217.1512
## 2323 96.92197 217.1512
## 2324 96.92197 217.1512
## 2325 96.92197 217.1512
## 2326 96.92197 217.1512
## 2327 96.92197 217.1512
## 2328 96.92197 217.1512
## 2329 182.98473 3924.4186
## 2330 182.98473 3924.4186
## 2331 182.98473 3924.4186
## 2332 182.98473 3924.4186
## 2333 182.98473 3924.4186
## 2334 182.98473 3924.4186
## 2335 182.98473 3924.4186
## 2336 182.98473 3924.4186
## 2337 182.98473 3924.4186
## 2338 182.98473 3924.4186
## 2339 182.98473 3924.4186
## 2340 182.98473 3924.4186
## 2341 182.98473 3924.4186
## 2342 182.98473 3924.4186
## 2343 182.98473 3924.4186
## 2344 182.98473 3924.4186
## 2345 182.98473 3924.4186
## 2346 182.98473 3924.4186
## 2347 182.98473 3924.4186
## 2348 182.98473 3924.4186
## 2349 182.98473 3924.4186
## 2350 182.98473 3924.4186
## 2351 182.98473 3924.4186
## 2352 182.98473 3924.4186
## 2353 178.56595 3819.7674
## 2354 178.56595 3819.7674
## 2355 178.56595 3819.7674
## 2356 178.56595 3819.7674
## 2357 178.56595 3819.7674
## 2358 178.56595 3819.7674
## 2359 178.56595 3819.7674
## 2360 178.56595 3819.7674
## 2361 178.56595 3819.7674
## 2362 178.56595 3819.7674
## 2363 178.56595 3819.7674
## 2364 178.56595 3819.7674
## 2365 178.56595 3819.7674
## 2366 178.56595 3819.7674
## 2367 178.56595 3819.7674
## 2368 178.56595 3819.7674
## 2369 178.56595 3819.7674
## 2370 178.56595 3819.7674
## 2371 178.56595 3819.7674
## 2372 178.56595 3819.7674
## 2373 178.56595 3819.7674
## 2374 178.56595 3819.7674
## 2375 178.56595 3819.7674
## 2376 178.56595 3819.7674
## 2377 155.63806 4705.8140
## 2378 155.63806 4705.8140
## 2379 155.63806 4705.8140
## 2380 155.63806 4705.8140
## 2381 155.63806 4705.8140
## 2382 155.63806 4705.8140
## 2383 155.63806 4705.8140
## 2384 155.63806 4705.8140
## 2385 155.63806 4705.8140
## 2386 155.63806 4705.8140
## 2387 155.63806 4705.8140
## 2388 155.63806 4705.8140
## 2389 155.63806 4705.8140
## 2390 155.63806 4705.8140
## 2391 155.63806 4705.8140
## 2392 155.63806 4705.8140
## 2393 155.63806 4705.8140
## 2394 155.63806 4705.8140
## 2395 155.63806 4705.8140
## 2396 155.63806 4705.8140
## 2397 155.63806 4705.8140
## 2398 155.63806 4705.8140
## 2399 155.63806 4705.8140
## 2400 155.63806 4705.8140
## 2401 151.89425 5345.9302
## 2402 151.89425 5345.9302
## 2403 151.89425 5345.9302
## 2404 151.89425 5345.9302
## 2405 151.89425 5345.9302
## 2406 151.89425 5345.9302
## 2407 151.89425 5345.9302
## 2408 151.89425 5345.9302
## 2409 151.89425 5345.9302
## 2410 151.89425 5345.9302
## 2411 151.89425 5345.9302
## 2412 151.89425 5345.9302
## 2413 151.89425 5345.9302
## 2414 151.89425 5345.9302
## 2415 151.89425 5345.9302
## 2416 151.89425 5345.9302
## 2417 151.89425 5345.9302
## 2418 151.89425 5345.9302
## 2419 151.89425 5345.9302
## 2420 151.89425 5345.9302
## 2421 151.89425 5345.9302
## 2422 151.89425 5345.9302
## 2423 151.89425 5345.9302
## 2424 151.89425 5345.9302
## 2425 139.29522 7709.3023
## 2426 139.29522 7709.3023
## 2427 139.29522 7709.3023
## 2428 139.29522 7709.3023
## 2429 139.29522 7709.3023
## 2430 139.29522 7709.3023
## 2431 139.29522 7709.3023
## 2432 139.29522 7709.3023
## 2433 139.29522 7709.3023
## 2434 139.29522 7709.3023
## 2435 139.29522 7709.3023
## 2436 139.29522 7709.3023
## 2437 139.29522 7709.3023
## 2438 139.29522 7709.3023
## 2439 139.29522 7709.3023
## 2440 139.29522 7709.3023
## 2441 139.29522 7709.3023
## 2442 139.29522 7709.3023
## 2443 139.29522 7709.3023
## 2444 139.29522 7709.3023
## 2445 139.29522 7709.3023
## 2446 139.29522 7709.3023
## 2447 139.29522 7709.3023
## 2448 139.29522 7709.3023
## 2449 98.85688 3553.7791
## 2450 98.85688 3553.7791
## 2451 98.85688 3553.7791
## 2452 98.85688 3553.7791
## 2453 98.85688 3553.7791
## 2454 98.85688 3553.7791
## 2455 98.85688 3553.7791
## 2456 98.85688 3553.7791
## 2457 98.85688 3553.7791
## 2458 98.85688 3553.7791
## 2459 98.85688 3553.7791
## 2460 98.85688 3553.7791
## 2461 98.85688 3553.7791
## 2462 98.85688 3553.7791
## 2463 98.85688 3553.7791
## 2464 98.85688 3553.7791
## 2465 98.85688 3553.7791
## 2466 98.85688 3553.7791
## 2467 98.85688 3553.7791
## 2468 98.85688 3553.7791
## 2469 98.85688 3553.7791
## 2470 98.85688 3553.7791
## 2471 98.85688 3553.7791
## 2472 98.85688 3553.7791
## 2473 141.87810 2180.2326
## 2474 141.87810 2180.2326
## 2475 141.87810 2180.2326
## 2476 141.87810 2180.2326
## 2477 141.87810 2180.2326
## 2478 141.87810 2180.2326
## 2479 141.87810 2180.2326
## 2480 141.87810 2180.2326
## 2481 141.87810 2180.2326
## 2482 141.87810 2180.2326
## 2483 141.87810 2180.2326
## 2484 141.87810 2180.2326
## 2485 141.87810 2180.2326
## 2486 141.87810 2180.2326
## 2487 141.87810 2180.2326
## 2488 141.87810 2180.2326
## 2489 141.87810 2180.2326
## 2490 141.87810 2180.2326
## 2491 141.87810 2180.2326
## 2492 141.87810 2180.2326
## 2493 141.87810 2180.2326
## 2494 141.87810 2180.2326
## 2495 141.87810 2180.2326
## 2496 141.87810 2180.2326
## 2497 96.92197 217.1512
## 2498 96.92197 217.1512
## 2499 96.92197 217.1512
## 2500 96.92197 217.1512
## 2501 96.92197 217.1512
## 2502 96.92197 217.1512
## 2503 96.92197 217.1512
## 2504 96.92197 217.1512
## 2505 96.92197 217.1512
## 2506 96.92197 217.1512
## 2507 96.92197 217.1512
## 2508 96.92197 217.1512
## 2509 96.92197 217.1512
## 2510 96.92197 217.1512
## 2511 96.92197 217.1512
## 2512 96.92197 217.1512
## 2513 96.92197 217.1512
## 2514 96.92197 217.1512
## 2515 96.92197 217.1512
## 2516 96.92197 217.1512
## 2517 96.92197 217.1512
## 2518 96.92197 217.1512
## 2519 96.92197 217.1512
## 2520 96.92197 217.1512
## 2521 114.40392 1744.1860
## 2522 114.40392 1744.1860
## 2523 114.40392 1744.1860
## 2524 114.40392 1744.1860
## 2525 114.40392 1744.1860
## 2526 114.40392 1744.1860
## 2527 114.40392 1744.1860
## 2528 114.40392 1744.1860
## 2529 114.40392 1744.1860
## 2530 114.40392 1744.1860
## 2531 114.40392 1744.1860
## 2532 114.40392 1744.1860
## 2533 114.40392 1744.1860
## 2534 114.40392 1744.1860
## 2535 114.40392 1744.1860
## 2536 114.40392 1744.1860
## 2537 114.40392 1744.1860
## 2538 114.40392 1744.1860
## 2539 114.40392 1744.1860
## 2540 114.40392 1744.1860
## 2541 114.40392 1744.1860
## 2542 114.40392 1744.1860
## 2543 114.40392 1744.1860
## 2544 114.40392 1744.1860
## 2545 156.49181 1412.7907
## 2546 156.49181 1412.7907
## 2547 156.49181 1412.7907
## 2548 156.49181 1412.7907
## 2549 156.49181 1412.7907
## 2550 156.49181 1412.7907
## 2551 156.49181 1412.7907
## 2552 156.49181 1412.7907
## 2553 156.49181 1412.7907
## 2554 156.49181 1412.7907
## 2555 156.49181 1412.7907
## 2556 156.49181 1412.7907
## 2557 156.49181 1412.7907
## 2558 156.49181 1412.7907
## 2559 156.49181 1412.7907
## 2560 156.49181 1412.7907
## 2561 156.49181 1412.7907
## 2562 156.49181 1412.7907
## 2563 156.49181 1412.7907
## 2564 156.49181 1412.7907
## 2565 156.49181 1412.7907
## 2566 156.49181 1412.7907
## 2567 156.49181 1412.7907
## 2568 156.49181 1412.7907
## 2569 112.16981 2612.7907
## 2570 112.16981 2612.7907
## 2571 112.16981 2612.7907
## 2572 112.16981 2612.7907
## 2573 112.16981 2612.7907
## 2574 112.16981 2612.7907
## 2575 112.16981 2612.7907
## 2576 112.16981 2612.7907
## 2577 112.16981 2612.7907
## 2578 112.16981 2612.7907
## 2579 112.16981 2612.7907
## 2580 112.16981 2612.7907
## 2581 112.16981 2612.7907
## 2582 112.16981 2612.7907
## 2583 112.16981 2612.7907
## 2584 112.16981 2612.7907
## 2585 112.16981 2612.7907
## 2586 112.16981 2612.7907
## 2587 112.16981 2612.7907
## 2588 112.16981 2612.7907
## 2589 112.16981 2612.7907
## 2590 112.16981 2612.7907
## 2591 112.16981 2612.7907
## 2592 112.16981 2612.7907
## 2593 151.62447 3680.2326
## 2594 151.62447 3680.2326
## 2595 151.62447 3680.2326
## 2596 151.62447 3680.2326
## 2597 151.62447 3680.2326
## 2598 151.62447 3680.2326
## 2599 151.62447 3680.2326
## 2600 151.62447 3680.2326
## 2601 151.62447 3680.2326
## 2602 151.62447 3680.2326
## 2603 151.62447 3680.2326
## 2604 151.62447 3680.2326
## 2605 151.62447 3680.2326
## 2606 151.62447 3680.2326
## 2607 151.62447 3680.2326
## 2608 151.62447 3680.2326
## 2609 151.62447 3680.2326
## 2610 151.62447 3680.2326
## 2611 151.62447 3680.2326
## 2612 151.62447 3680.2326
## 2613 151.62447 3680.2326
## 2614 151.62447 3680.2326
## 2615 151.62447 3680.2326
## 2616 151.62447 3680.2326
## 2617 59.47007 4360.4651
## 2618 59.47007 4360.4651
## 2619 59.47007 4360.4651
## 2620 59.47007 4360.4651
## 2621 59.47007 4360.4651
## 2622 59.47007 4360.4651
## 2623 59.47007 4360.4651
## 2624 59.47007 4360.4651
## 2625 59.47007 4360.4651
## 2626 59.47007 4360.4651
## 2627 59.47007 4360.4651
## 2628 59.47007 4360.4651
## 2629 59.47007 4360.4651
## 2630 59.47007 4360.4651
## 2631 59.47007 4360.4651
## 2632 59.47007 4360.4651
## 2633 59.47007 4360.4651
## 2634 59.47007 4360.4651
## 2635 59.47007 4360.4651
## 2636 59.47007 4360.4651
## 2637 59.47007 4360.4651
## 2638 59.47007 4360.4651
## 2639 59.47007 4360.4651
## 2640 59.47007 4360.4651
## 2641 39.56420 1090.1163
## 2642 39.56420 1090.1163
## 2643 39.56420 1090.1163
## 2644 39.56420 1090.1163
## 2645 39.56420 1090.1163
## 2646 39.56420 1090.1163
## 2647 39.56420 1090.1163
## 2648 39.56420 1090.1163
## 2649 39.56420 1090.1163
## 2650 39.56420 1090.1163
## 2651 39.56420 1090.1163
## 2652 39.56420 1090.1163
## 2653 39.56420 1090.1163
## 2654 39.56420 1090.1163
## 2655 39.56420 1090.1163
## 2656 39.56420 1090.1163
## 2657 39.56420 1090.1163
## 2658 39.56420 1090.1163
## 2659 39.56420 1090.1163
## 2660 39.56420 1090.1163
## 2661 39.56420 1090.1163
## 2662 39.56420 1090.1163
## 2663 39.56420 1090.1163
## 2664 39.56420 1090.1163
## 2665 33.29667 2180.2326
## 2666 33.29667 2180.2326
## 2667 33.29667 2180.2326
## 2668 33.29667 2180.2326
## 2669 33.29667 2180.2326
## 2670 33.29667 2180.2326
## 2671 33.29667 2180.2326
## 2672 33.29667 2180.2326
## 2673 33.29667 2180.2326
## 2674 33.29667 2180.2326
## 2675 33.29667 2180.2326
## 2676 33.29667 2180.2326
## 2677 33.29667 2180.2326
## 2678 33.29667 2180.2326
## 2679 33.29667 2180.2326
## 2680 33.29667 2180.2326
## 2681 33.29667 2180.2326
## 2682 33.29667 2180.2326
## 2683 33.29667 2180.2326
## 2684 33.29667 2180.2326
## 2685 33.29667 2180.2326
## 2686 33.29667 2180.2326
## 2687 33.29667 2180.2326
## 2688 33.29667 2180.2326
## 2689 96.92197 217.1512
## 2690 96.92197 217.1512
## 2691 96.92197 217.1512
## 2692 96.92197 217.1512
## 2693 96.92197 217.1512
## 2694 96.92197 217.1512
## 2695 96.92197 217.1512
## 2696 96.92197 217.1512
## 2697 96.92197 217.1512
## 2698 96.92197 217.1512
## 2699 96.92197 217.1512
## 2700 96.92197 217.1512
## 2701 96.92197 217.1512
## 2702 96.92197 217.1512
## 2703 96.92197 217.1512
## 2704 96.92197 217.1512
## 2705 96.92197 217.1512
## 2706 96.92197 217.1512
## 2707 96.92197 217.1512
## 2708 96.92197 217.1512
## 2709 96.92197 217.1512
## 2710 96.92197 217.1512
## 2711 96.92197 217.1512
## 2712 96.92197 217.1512
## 2713 119.13585 1744.1860
## 2714 119.13585 1744.1860
## 2715 119.13585 1744.1860
## 2716 119.13585 1744.1860
## 2717 119.13585 1744.1860
## 2718 119.13585 1744.1860
## 2719 119.13585 1744.1860
## 2720 119.13585 1744.1860
## 2721 119.13585 1744.1860
## 2722 119.13585 1744.1860
## 2723 119.13585 1744.1860
## 2724 119.13585 1744.1860
## 2725 119.13585 1744.1860
## 2726 119.13585 1744.1860
## 2727 119.13585 1744.1860
## 2728 119.13585 1744.1860
## 2729 119.13585 1744.1860
## 2730 119.13585 1744.1860
## 2731 119.13585 1744.1860
## 2732 119.13585 1744.1860
## 2733 119.13585 1744.1860
## 2734 119.13585 1744.1860
## 2735 119.13585 1744.1860
## 2736 119.13585 1744.1860
## 2737 149.70690 2502.9070
## 2738 149.70690 2502.9070
## 2739 149.70690 2502.9070
## 2740 149.70690 2502.9070
## 2741 149.70690 2502.9070
## 2742 149.70690 2502.9070
## 2743 149.70690 2502.9070
## 2744 149.70690 2502.9070
## 2745 149.70690 2502.9070
## 2746 149.70690 2502.9070
## 2747 149.70690 2502.9070
## 2748 149.70690 2502.9070
## 2749 149.70690 2502.9070
## 2750 149.70690 2502.9070
## 2751 149.70690 2502.9070
## 2752 149.70690 2502.9070
## 2753 149.70690 2502.9070
## 2754 149.70690 2502.9070
## 2755 149.70690 2502.9070
## 2756 149.70690 2502.9070
## 2757 149.70690 2502.9070
## 2758 149.70690 2502.9070
## 2759 149.70690 2502.9070
## 2760 149.70690 2502.9070
## 2761 205.19359 2612.7907
## 2762 205.19359 2612.7907
## 2763 205.19359 2612.7907
## 2764 205.19359 2612.7907
## 2765 205.19359 2612.7907
## 2766 205.19359 2612.7907
## 2767 205.19359 2612.7907
## 2768 205.19359 2612.7907
## 2769 205.19359 2612.7907
## 2770 205.19359 2612.7907
## 2771 205.19359 2612.7907
## 2772 205.19359 2612.7907
## 2773 205.19359 2612.7907
## 2774 205.19359 2612.7907
## 2775 205.19359 2612.7907
## 2776 205.19359 2612.7907
## 2777 205.19359 2612.7907
## 2778 205.19359 2612.7907
## 2779 205.19359 2612.7907
## 2780 205.19359 2612.7907
## 2781 205.19359 2612.7907
## 2782 205.19359 2612.7907
## 2783 205.19359 2612.7907
## 2784 205.19359 2612.7907
## 2785 210.11345 1090.1163
## 2786 210.11345 1090.1163
## 2787 210.11345 1090.1163
## 2788 210.11345 1090.1163
## 2789 210.11345 1090.1163
## 2790 210.11345 1090.1163
## 2791 210.11345 1090.1163
## 2792 210.11345 1090.1163
## 2793 210.11345 1090.1163
## 2794 210.11345 1090.1163
## 2795 210.11345 1090.1163
## 2796 210.11345 1090.1163
## 2797 210.11345 1090.1163
## 2798 210.11345 1090.1163
## 2799 210.11345 1090.1163
## 2800 210.11345 1090.1163
## 2801 210.11345 1090.1163
## 2802 210.11345 1090.1163
## 2803 210.11345 1090.1163
## 2804 210.11345 1090.1163
## 2805 210.11345 1090.1163
## 2806 210.11345 1090.1163
## 2807 210.11345 1090.1163
## 2808 210.11345 1090.1163
## 2809 170.39894 2162.7907
## 2810 170.39894 2162.7907
## 2811 170.39894 2162.7907
## 2812 170.39894 2162.7907
## 2813 170.39894 2162.7907
## 2814 170.39894 2162.7907
## 2815 170.39894 2162.7907
## 2816 170.39894 2162.7907
## 2817 170.39894 2162.7907
## 2818 170.39894 2162.7907
## 2819 170.39894 2162.7907
## 2820 170.39894 2162.7907
## 2821 170.39894 2162.7907
## 2822 170.39894 2162.7907
## 2823 170.39894 2162.7907
## 2824 170.39894 2162.7907
## 2825 170.39894 2162.7907
## 2826 170.39894 2162.7907
## 2827 170.39894 2162.7907
## 2828 170.39894 2162.7907
## 2829 170.39894 2162.7907
## 2830 170.39894 2162.7907
## 2831 170.39894 2162.7907
## 2832 170.39894 2162.7907
## 2833 149.41666 4329.9419
## 2834 149.41666 4329.9419
## 2835 149.41666 4329.9419
## 2836 149.41666 4329.9419
## 2837 149.41666 4329.9419
## 2838 149.41666 4329.9419
## 2839 149.41666 4329.9419
## 2840 149.41666 4329.9419
## 2841 149.41666 4329.9419
## 2842 149.41666 4329.9419
## 2843 149.41666 4329.9419
## 2844 149.41666 4329.9419
## 2845 149.41666 4329.9419
## 2846 149.41666 4329.9419
## 2847 149.41666 4329.9419
## 2848 149.41666 4329.9419
## 2849 149.41666 4329.9419
## 2850 149.41666 4329.9419
## 2851 149.41666 4329.9419
## 2852 149.41666 4329.9419
## 2853 149.41666 4329.9419
## 2854 149.41666 4329.9419
## 2855 149.41666 4329.9419
## 2856 149.41666 4329.9419
## 2857 111.86388 3920.0581
## 2858 111.86388 3920.0581
## 2859 111.86388 3920.0581
## 2860 111.86388 3920.0581
## 2861 111.86388 3920.0581
## 2862 111.86388 3920.0581
## 2863 111.86388 3920.0581
## 2864 111.86388 3920.0581
## 2865 111.86388 3920.0581
## 2866 111.86388 3920.0581
## 2867 111.86388 3920.0581
## 2868 111.86388 3920.0581
## 2869 111.86388 3920.0581
## 2870 111.86388 3920.0581
## 2871 111.86388 3920.0581
## 2872 111.86388 3920.0581
## 2873 111.86388 3920.0581
## 2874 111.86388 3920.0581
## 2875 111.86388 3920.0581
## 2876 111.86388 3920.0581
## 2877 111.86388 3920.0581
## 2878 111.86388 3920.0581
## 2879 111.86388 3920.0581
## 2880 111.86388 3920.0581
## 2881 96.92197 217.1512
## 2882 96.92197 217.1512
## 2883 96.92197 217.1512
## 2884 96.92197 217.1512
## 2885 96.92197 217.1512
## 2886 96.92197 217.1512
## 2887 96.92197 217.1512
## 2888 96.92197 217.1512
## 2889 96.92197 217.1512
## 2890 96.92197 217.1512
## 2891 96.92197 217.1512
## 2892 96.92197 217.1512
## 2893 96.92197 217.1512
## 2894 96.92197 217.1512
## 2895 96.92197 217.1512
## 2896 96.92197 217.1512
## 2897 96.92197 217.1512
## 2898 96.92197 217.1512
## 2899 96.92197 217.1512
## 2900 96.92197 217.1512
## 2901 96.92197 217.1512
## 2902 96.92197 217.1512
## 2903 96.92197 217.1512
## 2904 96.92197 217.1512
## 2905 149.85701 819.7674
## 2906 149.85701 819.7674
## 2907 149.85701 819.7674
## 2908 149.85701 819.7674
## 2909 149.85701 819.7674
## 2910 149.85701 819.7674
## 2911 149.85701 819.7674
## 2912 149.85701 819.7674
## 2913 149.85701 819.7674
## 2914 149.85701 819.7674
## 2915 149.85701 819.7674
## 2916 149.85701 819.7674
## 2917 149.85701 819.7674
## 2918 149.85701 819.7674
## 2919 149.85701 819.7674
## 2920 149.85701 819.7674
## 2921 149.85701 819.7674
## 2922 149.85701 819.7674
## 2923 149.85701 819.7674
## 2924 149.85701 819.7674
## 2925 149.85701 819.7674
## 2926 149.85701 819.7674
## 2927 149.85701 819.7674
## 2928 149.85701 819.7674
## 2929 158.73461 2373.8372
## 2930 158.73461 2373.8372
## 2931 158.73461 2373.8372
## 2932 158.73461 2373.8372
## 2933 158.73461 2373.8372
## 2934 158.73461 2373.8372
## 2935 158.73461 2373.8372
## 2936 158.73461 2373.8372
## 2937 158.73461 2373.8372
## 2938 158.73461 2373.8372
## 2939 158.73461 2373.8372
## 2940 158.73461 2373.8372
## 2941 158.73461 2373.8372
## 2942 158.73461 2373.8372
## 2943 158.73461 2373.8372
## 2944 158.73461 2373.8372
## 2945 158.73461 2373.8372
## 2946 158.73461 2373.8372
## 2947 158.73461 2373.8372
## 2948 158.73461 2373.8372
## 2949 158.73461 2373.8372
## 2950 158.73461 2373.8372
## 2951 158.73461 2373.8372
## 2952 158.73461 2373.8372
## 2953 185.82102 2956.3953
## 2954 185.82102 2956.3953
## 2955 185.82102 2956.3953
## 2956 185.82102 2956.3953
## 2957 185.82102 2956.3953
## 2958 185.82102 2956.3953
## 2959 185.82102 2956.3953
## 2960 185.82102 2956.3953
## 2961 185.82102 2956.3953
## 2962 185.82102 2956.3953
## 2963 185.82102 2956.3953
## 2964 185.82102 2956.3953
## 2965 185.82102 2956.3953
## 2966 185.82102 2956.3953
## 2967 185.82102 2956.3953
## 2968 185.82102 2956.3953
## 2969 185.82102 2956.3953
## 2970 185.82102 2956.3953
## 2971 185.82102 2956.3953
## 2972 185.82102 2956.3953
## 2973 185.82102 2956.3953
## 2974 185.82102 2956.3953
## 2975 185.82102 2956.3953
## 2976 185.82102 2956.3953
## 2977 134.71835 3802.3256
## 2978 134.71835 3802.3256
## 2979 134.71835 3802.3256
## 2980 134.71835 3802.3256
## 2981 134.71835 3802.3256
## 2982 134.71835 3802.3256
## 2983 134.71835 3802.3256
## 2984 134.71835 3802.3256
## 2985 134.71835 3802.3256
## 2986 134.71835 3802.3256
## 2987 134.71835 3802.3256
## 2988 134.71835 3802.3256
## 2989 134.71835 3802.3256
## 2990 134.71835 3802.3256
## 2991 134.71835 3802.3256
## 2992 134.71835 3802.3256
## 2993 134.71835 3802.3256
## 2994 134.71835 3802.3256
## 2995 134.71835 3802.3256
## 2996 134.71835 3802.3256
## 2997 134.71835 3802.3256
## 2998 134.71835 3802.3256
## 2999 134.71835 3802.3256
## 3000 134.71835 3802.3256
## 3001 117.16941 3750.0000
## 3002 117.16941 3750.0000
## 3003 117.16941 3750.0000
## 3004 117.16941 3750.0000
## 3005 117.16941 3750.0000
## 3006 117.16941 3750.0000
## 3007 117.16941 3750.0000
## 3008 117.16941 3750.0000
## 3009 117.16941 3750.0000
## 3010 117.16941 3750.0000
## 3011 117.16941 3750.0000
## 3012 117.16941 3750.0000
## 3013 117.16941 3750.0000
## 3014 117.16941 3750.0000
## 3015 117.16941 3750.0000
## 3016 117.16941 3750.0000
## 3017 117.16941 3750.0000
## 3018 117.16941 3750.0000
## 3019 117.16941 3750.0000
## 3020 117.16941 3750.0000
## 3021 117.16941 3750.0000
## 3022 117.16941 3750.0000
## 3023 117.16941 3750.0000
## 3024 117.16941 3750.0000
## 3025 102.14115 2768.8953
## 3026 102.14115 2768.8953
## 3027 102.14115 2768.8953
## 3028 102.14115 2768.8953
## 3029 102.14115 2768.8953
## 3030 102.14115 2768.8953
## 3031 102.14115 2768.8953
## 3032 102.14115 2768.8953
## 3033 102.14115 2768.8953
## 3034 102.14115 2768.8953
## 3035 102.14115 2768.8953
## 3036 102.14115 2768.8953
## 3037 102.14115 2768.8953
## 3038 102.14115 2768.8953
## 3039 102.14115 2768.8953
## 3040 102.14115 2768.8953
## 3041 102.14115 2768.8953
## 3042 102.14115 2768.8953
## 3043 102.14115 2768.8953
## 3044 102.14115 2768.8953
## 3045 102.14115 2768.8953
## 3046 102.14115 2768.8953
## 3047 102.14115 2768.8953
## 3048 102.14115 2768.8953
## 3049 93.17670 1785.1744
## 3050 93.17670 1785.1744
## 3051 93.17670 1785.1744
## 3052 93.17670 1785.1744
## 3053 93.17670 1785.1744
## 3054 93.17670 1785.1744
## 3055 93.17670 1785.1744
## 3056 93.17670 1785.1744
## 3057 93.17670 1785.1744
## 3058 93.17670 1785.1744
## 3059 93.17670 1785.1744
## 3060 93.17670 1785.1744
## 3061 93.17670 1785.1744
## 3062 93.17670 1785.1744
## 3063 93.17670 1785.1744
## 3064 93.17670 1785.1744
## 3065 93.17670 1785.1744
## 3066 93.17670 1785.1744
## 3067 93.17670 1785.1744
## 3068 93.17670 1785.1744
## 3069 93.17670 1785.1744
## 3070 93.17670 1785.1744
## 3071 93.17670 1785.1744
## 3072 93.17670 1785.1744
## 3073 96.92197 217.1512
## 3074 96.92197 217.1512
## 3075 96.92197 217.1512
## 3076 96.92197 217.1512
## 3077 96.92197 217.1512
## 3078 96.92197 217.1512
## 3079 96.92197 217.1512
## 3080 96.92197 217.1512
## 3081 96.92197 217.1512
## 3082 96.92197 217.1512
## 3083 96.92197 217.1512
## 3084 96.92197 217.1512
## 3085 96.92197 217.1512
## 3086 96.92197 217.1512
## 3087 96.92197 217.1512
## 3088 96.92197 217.1512
## 3089 96.92197 217.1512
## 3090 96.92197 217.1512
## 3091 96.92197 217.1512
## 3092 96.92197 217.1512
## 3093 96.92197 217.1512
## 3094 96.92197 217.1512
## 3095 96.92197 217.1512
## 3096 96.92197 217.1512
## 3097 226.72885 5319.7674
## 3098 226.72885 5319.7674
## 3099 226.72885 5319.7674
## 3100 226.72885 5319.7674
## 3101 226.72885 5319.7674
## 3102 226.72885 5319.7674
## 3103 226.72885 5319.7674
## 3104 226.72885 5319.7674
## 3105 226.72885 5319.7674
## 3106 226.72885 5319.7674
## 3107 226.72885 5319.7674
## 3108 226.72885 5319.7674
## 3109 226.72885 5319.7674
## 3110 226.72885 5319.7674
## 3111 226.72885 5319.7674
## 3112 226.72885 5319.7674
## 3113 226.72885 5319.7674
## 3114 226.72885 5319.7674
## 3115 226.72885 5319.7674
## 3116 226.72885 5319.7674
## 3117 226.72885 5319.7674
## 3118 226.72885 5319.7674
## 3119 226.72885 5319.7674
## 3120 226.72885 5319.7674
## 3121 128.89784 2879.6512
## 3122 128.89784 2879.6512
## 3123 128.89784 2879.6512
## 3124 128.89784 2879.6512
## 3125 128.89784 2879.6512
## 3126 128.89784 2879.6512
## 3127 128.89784 2879.6512
## 3128 128.89784 2879.6512
## 3129 128.89784 2879.6512
## 3130 128.89784 2879.6512
## 3131 128.89784 2879.6512
## 3132 128.89784 2879.6512
## 3133 128.89784 2879.6512
## 3134 128.89784 2879.6512
## 3135 128.89784 2879.6512
## 3136 128.89784 2879.6512
## 3137 128.89784 2879.6512
## 3138 128.89784 2879.6512
## 3139 128.89784 2879.6512
## 3140 128.89784 2879.6512
## 3141 128.89784 2879.6512
## 3142 128.89784 2879.6512
## 3143 128.89784 2879.6512
## 3144 128.89784 2879.6512
## 3145 213.14406 4534.8837
## 3146 213.14406 4534.8837
## 3147 213.14406 4534.8837
## 3148 213.14406 4534.8837
## 3149 213.14406 4534.8837
## 3150 213.14406 4534.8837
## 3151 213.14406 4534.8837
## 3152 213.14406 4534.8837
## 3153 213.14406 4534.8837
## 3154 213.14406 4534.8837
## 3155 213.14406 4534.8837
## 3156 213.14406 4534.8837
## 3157 213.14406 4534.8837
## 3158 213.14406 4534.8837
## 3159 213.14406 4534.8837
## 3160 213.14406 4534.8837
## 3161 213.14406 4534.8837
## 3162 213.14406 4534.8837
## 3163 213.14406 4534.8837
## 3164 213.14406 4534.8837
## 3165 213.14406 4534.8837
## 3166 213.14406 4534.8837
## 3167 213.14406 4534.8837
## 3168 213.14406 4534.8837
## 3169 171.38523 3226.7442
## 3170 171.38523 3226.7442
## 3171 171.38523 3226.7442
## 3172 171.38523 3226.7442
## 3173 171.38523 3226.7442
## 3174 171.38523 3226.7442
## 3175 171.38523 3226.7442
## 3176 171.38523 3226.7442
## 3177 171.38523 3226.7442
## 3178 171.38523 3226.7442
## 3179 171.38523 3226.7442
## 3180 171.38523 3226.7442
## 3181 171.38523 3226.7442
## 3182 171.38523 3226.7442
## 3183 171.38523 3226.7442
## 3184 171.38523 3226.7442
## 3185 171.38523 3226.7442
## 3186 171.38523 3226.7442
## 3187 171.38523 3226.7442
## 3188 171.38523 3226.7442
## 3189 171.38523 3226.7442
## 3190 171.38523 3226.7442
## 3191 171.38523 3226.7442
## 3192 171.38523 3226.7442
## 3193 119.30850 2659.8837
## 3194 119.30850 2659.8837
## 3195 119.30850 2659.8837
## 3196 119.30850 2659.8837
## 3197 119.30850 2659.8837
## 3198 119.30850 2659.8837
## 3199 119.30850 2659.8837
## 3200 119.30850 2659.8837
## 3201 119.30850 2659.8837
## 3202 119.30850 2659.8837
## 3203 119.30850 2659.8837
## 3204 119.30850 2659.8837
## 3205 119.30850 2659.8837
## 3206 119.30850 2659.8837
## 3207 119.30850 2659.8837
## 3208 119.30850 2659.8837
## 3209 119.30850 2659.8837
## 3210 119.30850 2659.8837
## 3211 119.30850 2659.8837
## 3212 119.30850 2659.8837
## 3213 119.30850 2659.8837
## 3214 119.30850 2659.8837
## 3215 119.30850 2659.8837
## 3216 119.30850 2659.8837
## 3217 103.92120 4765.9884
## 3218 103.92120 4765.9884
## 3219 103.92120 4765.9884
## 3220 103.92120 4765.9884
## 3221 103.92120 4765.9884
## 3222 103.92120 4765.9884
## 3223 103.92120 4765.9884
## 3224 103.92120 4765.9884
## 3225 103.92120 4765.9884
## total_metaecosystem_Cep_indiv total_metaecosystem_Col_indiv
## 1 1794.767 4812.20930
## 2 1794.767 4812.20930
## 3 1794.767 4812.20930
## 4 1794.767 4812.20930
## 5 1794.767 4812.20930
## 6 1794.767 4812.20930
## 7 1794.767 4812.20930
## 8 1794.767 4812.20930
## 9 1794.767 4812.20930
## 10 1794.767 4812.20930
## 11 1794.767 4812.20930
## 12 1794.767 4812.20930
## 13 1794.767 4812.20930
## 14 1794.767 4812.20930
## 15 1794.767 4812.20930
## 16 1794.767 4812.20930
## 17 1794.767 4812.20930
## 18 1794.767 4812.20930
## 19 1794.767 4812.20930
## 20 1794.767 4812.20930
## 21 1794.767 4812.20930
## 22 1794.767 4812.20930
## 23 1794.767 4812.20930
## 24 1794.767 4812.20930
## 25 8056.395 20305.81395
## 26 8056.395 20305.81395
## 27 8056.395 20305.81395
## 28 8056.395 20305.81395
## 29 8056.395 20305.81395
## 30 8056.395 20305.81395
## 31 8056.395 20305.81395
## 32 8056.395 20305.81395
## 33 8056.395 20305.81395
## 34 8056.395 20305.81395
## 35 8056.395 20305.81395
## 36 8056.395 20305.81395
## 37 8056.395 20305.81395
## 38 8056.395 20305.81395
## 39 8056.395 20305.81395
## 40 8056.395 20305.81395
## 41 8056.395 20305.81395
## 42 8056.395 20305.81395
## 43 8056.395 20305.81395
## 44 8056.395 20305.81395
## 45 8056.395 20305.81395
## 46 8056.395 20305.81395
## 47 8056.395 20305.81395
## 48 8056.395 20305.81395
## 49 11759.302 16356.97674
## 50 11759.302 16356.97674
## 51 11759.302 16356.97674
## 52 11759.302 16356.97674
## 53 11759.302 16356.97674
## 54 11759.302 16356.97674
## 55 11759.302 16356.97674
## 56 11759.302 16356.97674
## 57 11759.302 16356.97674
## 58 11759.302 16356.97674
## 59 11759.302 16356.97674
## 60 11759.302 16356.97674
## 61 11759.302 16356.97674
## 62 11759.302 16356.97674
## 63 11759.302 16356.97674
## 64 11759.302 16356.97674
## 65 11759.302 16356.97674
## 66 11759.302 16356.97674
## 67 11759.302 16356.97674
## 68 11759.302 16356.97674
## 69 11759.302 16356.97674
## 70 11759.302 16356.97674
## 71 11759.302 16356.97674
## 72 11759.302 16356.97674
## 73 6552.907 6973.25581
## 74 6552.907 6973.25581
## 75 6552.907 6973.25581
## 76 6552.907 6973.25581
## 77 6552.907 6973.25581
## 78 6552.907 6973.25581
## 79 6552.907 6973.25581
## 80 6552.907 6973.25581
## 81 6552.907 6973.25581
## 82 6552.907 6973.25581
## 83 6552.907 6973.25581
## 84 6552.907 6973.25581
## 85 6552.907 6973.25581
## 86 6552.907 6973.25581
## 87 6552.907 6973.25581
## 88 6552.907 6973.25581
## 89 6552.907 6973.25581
## 90 6552.907 6973.25581
## 91 6552.907 6973.25581
## 92 6552.907 6973.25581
## 93 6552.907 6973.25581
## 94 6552.907 6973.25581
## 95 6552.907 6973.25581
## 96 6552.907 6973.25581
## 97 9326.163 3912.20930
## 98 9326.163 3912.20930
## 99 9326.163 3912.20930
## 100 9326.163 3912.20930
## 101 9326.163 3912.20930
## 102 9326.163 3912.20930
## 103 9326.163 3912.20930
## 104 9326.163 3912.20930
## 105 9326.163 3912.20930
## 106 9326.163 3912.20930
## 107 9326.163 3912.20930
## 108 9326.163 3912.20930
## 109 9326.163 3912.20930
## 110 9326.163 3912.20930
## 111 9326.163 3912.20930
## 112 9326.163 3912.20930
## 113 9326.163 3912.20930
## 114 9326.163 3912.20930
## 115 9326.163 3912.20930
## 116 9326.163 3912.20930
## 117 9326.163 3912.20930
## 118 9326.163 3912.20930
## 119 9326.163 3912.20930
## 120 9326.163 3912.20930
## 121 9818.023 0.00000
## 122 9818.023 0.00000
## 123 9818.023 0.00000
## 124 9818.023 0.00000
## 125 9818.023 0.00000
## 126 9818.023 0.00000
## 127 9818.023 0.00000
## 128 9818.023 0.00000
## 129 9818.023 0.00000
## 130 9818.023 0.00000
## 131 9818.023 0.00000
## 132 9818.023 0.00000
## 133 9818.023 0.00000
## 134 9818.023 0.00000
## 135 9818.023 0.00000
## 136 9818.023 0.00000
## 137 9818.023 0.00000
## 138 9818.023 0.00000
## 139 9818.023 0.00000
## 140 9818.023 0.00000
## 141 9818.023 0.00000
## 142 9818.023 0.00000
## 143 9818.023 0.00000
## 144 9818.023 0.00000
## 145 15800.581 418.60465
## 146 15800.581 418.60465
## 147 15800.581 418.60465
## 148 15800.581 418.60465
## 149 15800.581 418.60465
## 150 15800.581 418.60465
## 151 15800.581 418.60465
## 152 15800.581 418.60465
## 153 15800.581 418.60465
## 154 15800.581 418.60465
## 155 15800.581 418.60465
## 156 15800.581 418.60465
## 157 15800.581 418.60465
## 158 15800.581 418.60465
## 159 15800.581 418.60465
## 160 15800.581 418.60465
## 161 15800.581 418.60465
## 162 15800.581 418.60465
## 163 15800.581 418.60465
## 164 15800.581 418.60465
## 165 15800.581 418.60465
## 166 15800.581 418.60465
## 167 15800.581 418.60465
## 168 15800.581 418.60465
## 169 15422.093 0.00000
## 170 15422.093 0.00000
## 171 15422.093 0.00000
## 172 15422.093 0.00000
## 173 15422.093 0.00000
## 174 15422.093 0.00000
## 175 15422.093 0.00000
## 176 15422.093 0.00000
## 177 15422.093 0.00000
## 178 15422.093 0.00000
## 179 15422.093 0.00000
## 180 15422.093 0.00000
## 181 15422.093 0.00000
## 182 15422.093 0.00000
## 183 15422.093 0.00000
## 184 15422.093 0.00000
## 185 15422.093 0.00000
## 186 15422.093 0.00000
## 187 15422.093 0.00000
## 188 15422.093 0.00000
## 189 15422.093 0.00000
## 190 15422.093 0.00000
## 191 15422.093 0.00000
## 192 15422.093 0.00000
## 193 1794.767 4812.20930
## 194 1794.767 4812.20930
## 195 1794.767 4812.20930
## 196 1794.767 4812.20930
## 197 1794.767 4812.20930
## 198 1794.767 4812.20930
## 199 1794.767 4812.20930
## 200 1794.767 4812.20930
## 201 1794.767 4812.20930
## 202 1794.767 4812.20930
## 203 1794.767 4812.20930
## 204 1794.767 4812.20930
## 205 1794.767 4812.20930
## 206 1794.767 4812.20930
## 207 1794.767 4812.20930
## 208 1794.767 4812.20930
## 209 1794.767 4812.20930
## 210 1794.767 4812.20930
## 211 1794.767 4812.20930
## 212 1794.767 4812.20930
## 213 1794.767 4812.20930
## 214 1794.767 4812.20930
## 215 1794.767 4812.20930
## 216 1794.767 4812.20930
## 217 9695.930 12404.65116
## 218 9695.930 12404.65116
## 219 9695.930 12404.65116
## 220 9695.930 12404.65116
## 221 9695.930 12404.65116
## 222 9695.930 12404.65116
## 223 9695.930 12404.65116
## 224 9695.930 12404.65116
## 225 9695.930 12404.65116
## 226 9695.930 12404.65116
## 227 9695.930 12404.65116
## 228 9695.930 12404.65116
## 229 9695.930 12404.65116
## 230 9695.930 12404.65116
## 231 9695.930 12404.65116
## 232 9695.930 12404.65116
## 233 9695.930 12404.65116
## 234 9695.930 12404.65116
## 235 9695.930 12404.65116
## 236 9695.930 12404.65116
## 237 9695.930 12404.65116
## 238 9695.930 12404.65116
## 239 9695.930 12404.65116
## 240 9695.930 12404.65116
## 241 12648.837 5159.30233
## 242 12648.837 5159.30233
## 243 12648.837 5159.30233
## 244 12648.837 5159.30233
## 245 12648.837 5159.30233
## 246 12648.837 5159.30233
## 247 12648.837 5159.30233
## 248 12648.837 5159.30233
## 249 12648.837 5159.30233
## 250 12648.837 5159.30233
## 251 12648.837 5159.30233
## 252 12648.837 5159.30233
## 253 12648.837 5159.30233
## 254 12648.837 5159.30233
## 255 12648.837 5159.30233
## 256 12648.837 5159.30233
## 257 12648.837 5159.30233
## 258 12648.837 5159.30233
## 259 12648.837 5159.30233
## 260 12648.837 5159.30233
## 261 12648.837 5159.30233
## 262 12648.837 5159.30233
## 263 12648.837 5159.30233
## 264 12648.837 5159.30233
## 265 14872.674 3685.46512
## 266 14872.674 3685.46512
## 267 14872.674 3685.46512
## 268 14872.674 3685.46512
## 269 14872.674 3685.46512
## 270 14872.674 3685.46512
## 271 14872.674 3685.46512
## 272 14872.674 3685.46512
## 273 14872.674 3685.46512
## 274 14872.674 3685.46512
## 275 14872.674 3685.46512
## 276 14872.674 3685.46512
## 277 14872.674 3685.46512
## 278 14872.674 3685.46512
## 279 14872.674 3685.46512
## 280 14872.674 3685.46512
## 281 14872.674 3685.46512
## 282 14872.674 3685.46512
## 283 14872.674 3685.46512
## 284 14872.674 3685.46512
## 285 14872.674 3685.46512
## 286 14872.674 3685.46512
## 287 14872.674 3685.46512
## 288 14872.674 3685.46512
## 289 13006.395 397.67442
## 290 13006.395 397.67442
## 291 13006.395 397.67442
## 292 13006.395 397.67442
## 293 13006.395 397.67442
## 294 13006.395 397.67442
## 295 13006.395 397.67442
## 296 13006.395 397.67442
## 297 13006.395 397.67442
## 298 13006.395 397.67442
## 299 13006.395 397.67442
## 300 13006.395 397.67442
## 301 13006.395 397.67442
## 302 13006.395 397.67442
## 303 13006.395 397.67442
## 304 13006.395 397.67442
## 305 13006.395 397.67442
## 306 13006.395 397.67442
## 307 13006.395 397.67442
## 308 13006.395 397.67442
## 309 13006.395 397.67442
## 310 13006.395 397.67442
## 311 13006.395 397.67442
## 312 13006.395 397.67442
## 313 8248.256 837.20930
## 314 8248.256 837.20930
## 315 8248.256 837.20930
## 316 8248.256 837.20930
## 317 8248.256 837.20930
## 318 8248.256 837.20930
## 319 8248.256 837.20930
## 320 8248.256 837.20930
## 321 8248.256 837.20930
## 322 8248.256 837.20930
## 323 8248.256 837.20930
## 324 8248.256 837.20930
## 325 8248.256 837.20930
## 326 8248.256 837.20930
## 327 8248.256 837.20930
## 328 8248.256 837.20930
## 329 8248.256 837.20930
## 330 8248.256 837.20930
## 331 8248.256 837.20930
## 332 8248.256 837.20930
## 333 8248.256 837.20930
## 334 8248.256 837.20930
## 335 8248.256 837.20930
## 336 8248.256 837.20930
## 337 12547.674 0.00000
## 338 12547.674 0.00000
## 339 12547.674 0.00000
## 340 12547.674 0.00000
## 341 12547.674 0.00000
## 342 12547.674 0.00000
## 343 12547.674 0.00000
## 344 12547.674 0.00000
## 345 12547.674 0.00000
## 346 12547.674 0.00000
## 347 12547.674 0.00000
## 348 12547.674 0.00000
## 349 12547.674 0.00000
## 350 12547.674 0.00000
## 351 12547.674 0.00000
## 352 12547.674 0.00000
## 353 12547.674 0.00000
## 354 12547.674 0.00000
## 355 12547.674 0.00000
## 356 12547.674 0.00000
## 357 12547.674 0.00000
## 358 12547.674 0.00000
## 359 12547.674 0.00000
## 360 12547.674 0.00000
## 361 10438.081 0.00000
## 362 10438.081 0.00000
## 363 10438.081 0.00000
## 364 10438.081 0.00000
## 365 10438.081 0.00000
## 366 10438.081 0.00000
## 367 10438.081 0.00000
## 368 10438.081 0.00000
## 369 10438.081 0.00000
## 370 10438.081 0.00000
## 371 10438.081 0.00000
## 372 10438.081 0.00000
## 373 10438.081 0.00000
## 374 10438.081 0.00000
## 375 10438.081 0.00000
## 376 10438.081 0.00000
## 377 10438.081 0.00000
## 378 10438.081 0.00000
## 379 10438.081 0.00000
## 380 10438.081 0.00000
## 381 10438.081 0.00000
## 382 10438.081 0.00000
## 383 10438.081 0.00000
## 384 10438.081 0.00000
## 385 1794.767 4812.20930
## 386 1794.767 4812.20930
## 387 1794.767 4812.20930
## 388 1794.767 4812.20930
## 389 1794.767 4812.20930
## 390 1794.767 4812.20930
## 391 1794.767 4812.20930
## 392 1794.767 4812.20930
## 393 1794.767 4812.20930
## 394 1794.767 4812.20930
## 395 1794.767 4812.20930
## 396 1794.767 4812.20930
## 397 1794.767 4812.20930
## 398 1794.767 4812.20930
## 399 1794.767 4812.20930
## 400 1794.767 4812.20930
## 401 1794.767 4812.20930
## 402 1794.767 4812.20930
## 403 1794.767 4812.20930
## 404 1794.767 4812.20930
## 405 1794.767 4812.20930
## 406 1794.767 4812.20930
## 407 1794.767 4812.20930
## 408 1794.767 4812.20930
## 409 8344.186 17236.04651
## 410 8344.186 17236.04651
## 411 8344.186 17236.04651
## 412 8344.186 17236.04651
## 413 8344.186 17236.04651
## 414 8344.186 17236.04651
## 415 8344.186 17236.04651
## 416 8344.186 17236.04651
## 417 8344.186 17236.04651
## 418 8344.186 17236.04651
## 419 8344.186 17236.04651
## 420 8344.186 17236.04651
## 421 8344.186 17236.04651
## 422 8344.186 17236.04651
## 423 8344.186 17236.04651
## 424 8344.186 17236.04651
## 425 8344.186 17236.04651
## 426 8344.186 17236.04651
## 427 8344.186 17236.04651
## 428 8344.186 17236.04651
## 429 8344.186 17236.04651
## 430 8344.186 17236.04651
## 431 8344.186 17236.04651
## 432 8344.186 17236.04651
## 433 12762.209 6022.67442
## 434 12762.209 6022.67442
## 435 12762.209 6022.67442
## 436 12762.209 6022.67442
## 437 12762.209 6022.67442
## 438 12762.209 6022.67442
## 439 12762.209 6022.67442
## 440 12762.209 6022.67442
## 441 12762.209 6022.67442
## 442 12762.209 6022.67442
## 443 12762.209 6022.67442
## 444 12762.209 6022.67442
## 445 12762.209 6022.67442
## 446 12762.209 6022.67442
## 447 12762.209 6022.67442
## 448 12762.209 6022.67442
## 449 12762.209 6022.67442
## 450 12762.209 6022.67442
## 451 12762.209 6022.67442
## 452 12762.209 6022.67442
## 453 12762.209 6022.67442
## 454 12762.209 6022.67442
## 455 12762.209 6022.67442
## 456 12762.209 6022.67442
## 457 6770.930 4060.46512
## 458 6770.930 4060.46512
## 459 6770.930 4060.46512
## 460 6770.930 4060.46512
## 461 6770.930 4060.46512
## 462 6770.930 4060.46512
## 463 6770.930 4060.46512
## 464 6770.930 4060.46512
## 465 6770.930 4060.46512
## 466 6770.930 4060.46512
## 467 6770.930 4060.46512
## 468 6770.930 4060.46512
## 469 6770.930 4060.46512
## 470 6770.930 4060.46512
## 471 6770.930 4060.46512
## 472 6770.930 4060.46512
## 473 6770.930 4060.46512
## 474 6770.930 4060.46512
## 475 6770.930 4060.46512
## 476 6770.930 4060.46512
## 477 6770.930 4060.46512
## 478 6770.930 4060.46512
## 479 6770.930 4060.46512
## 480 6770.930 4060.46512
## 481 10730.233 397.67442
## 482 10730.233 397.67442
## 483 10730.233 397.67442
## 484 10730.233 397.67442
## 485 10730.233 397.67442
## 486 10730.233 397.67442
## 487 10730.233 397.67442
## 488 10730.233 397.67442
## 489 10730.233 397.67442
## 490 10730.233 397.67442
## 491 10730.233 397.67442
## 492 10730.233 397.67442
## 493 10730.233 397.67442
## 494 10730.233 397.67442
## 495 10730.233 397.67442
## 496 10730.233 397.67442
## 497 10730.233 397.67442
## 498 10730.233 397.67442
## 499 10730.233 397.67442
## 500 10730.233 397.67442
## 501 10730.233 397.67442
## 502 10730.233 397.67442
## 503 10730.233 397.67442
## 504 10730.233 397.67442
## 505 3722.093 0.00000
## 506 3722.093 0.00000
## 507 3722.093 0.00000
## 508 3722.093 0.00000
## 509 3722.093 0.00000
## 510 3722.093 0.00000
## 511 3722.093 0.00000
## 512 3722.093 0.00000
## 513 3722.093 0.00000
## 514 3722.093 0.00000
## 515 3722.093 0.00000
## 516 3722.093 0.00000
## 517 3722.093 0.00000
## 518 3722.093 0.00000
## 519 3722.093 0.00000
## 520 3722.093 0.00000
## 521 3722.093 0.00000
## 522 3722.093 0.00000
## 523 3722.093 0.00000
## 524 3722.093 0.00000
## 525 3722.093 0.00000
## 526 3722.093 0.00000
## 527 3722.093 0.00000
## 528 3722.093 0.00000
## 529 13943.023 327.03488
## 530 13943.023 327.03488
## 531 13943.023 327.03488
## 532 13943.023 327.03488
## 533 13943.023 327.03488
## 534 13943.023 327.03488
## 535 13943.023 327.03488
## 536 13943.023 327.03488
## 537 13943.023 327.03488
## 538 13943.023 327.03488
## 539 13943.023 327.03488
## 540 13943.023 327.03488
## 541 13943.023 327.03488
## 542 13943.023 327.03488
## 543 13943.023 327.03488
## 544 13943.023 327.03488
## 545 13943.023 327.03488
## 546 13943.023 327.03488
## 547 13943.023 327.03488
## 548 13943.023 327.03488
## 549 13943.023 327.03488
## 550 13943.023 327.03488
## 551 13943.023 327.03488
## 552 13943.023 327.03488
## 553 19956.977 0.00000
## 554 19956.977 0.00000
## 555 19956.977 0.00000
## 556 19956.977 0.00000
## 557 19956.977 0.00000
## 558 19956.977 0.00000
## 559 19956.977 0.00000
## 560 19956.977 0.00000
## 561 19956.977 0.00000
## 562 19956.977 0.00000
## 563 19956.977 0.00000
## 564 19956.977 0.00000
## 565 19956.977 0.00000
## 566 19956.977 0.00000
## 567 19956.977 0.00000
## 568 19956.977 0.00000
## 569 19956.977 0.00000
## 570 19956.977 0.00000
## 571 19956.977 0.00000
## 572 19956.977 0.00000
## 573 19956.977 0.00000
## 574 19956.977 0.00000
## 575 19956.977 0.00000
## 576 19956.977 0.00000
## 577 1794.767 4812.20930
## 578 1794.767 4812.20930
## 579 1794.767 4812.20930
## 580 1794.767 4812.20930
## 581 1794.767 4812.20930
## 582 1794.767 4812.20930
## 583 1794.767 4812.20930
## 584 1794.767 4812.20930
## 585 1794.767 4812.20930
## 586 1794.767 4812.20930
## 587 1794.767 4812.20930
## 588 1794.767 4812.20930
## 589 1794.767 4812.20930
## 590 1794.767 4812.20930
## 591 1794.767 4812.20930
## 592 1794.767 4812.20930
## 593 1794.767 4812.20930
## 594 1794.767 4812.20930
## 595 1794.767 4812.20930
## 596 1794.767 4812.20930
## 597 1794.767 4812.20930
## 598 1794.767 4812.20930
## 599 1794.767 4812.20930
## 600 1794.767 4812.20930
## 601 10227.907 11567.44186
## 602 10227.907 11567.44186
## 603 10227.907 11567.44186
## 604 10227.907 11567.44186
## 605 10227.907 11567.44186
## 606 10227.907 11567.44186
## 607 10227.907 11567.44186
## 608 10227.907 11567.44186
## 609 10227.907 11567.44186
## 610 10227.907 11567.44186
## 611 10227.907 11567.44186
## 612 10227.907 11567.44186
## 613 10227.907 11567.44186
## 614 10227.907 11567.44186
## 615 10227.907 11567.44186
## 616 10227.907 11567.44186
## 617 10227.907 11567.44186
## 618 10227.907 11567.44186
## 619 10227.907 11567.44186
## 620 10227.907 11567.44186
## 621 10227.907 11567.44186
## 622 10227.907 11567.44186
## 623 10227.907 11567.44186
## 624 10227.907 11567.44186
## 625 17148.837 2072.09302
## 626 17148.837 2072.09302
## 627 17148.837 2072.09302
## 628 17148.837 2072.09302
## 629 17148.837 2072.09302
## 630 17148.837 2072.09302
## 631 17148.837 2072.09302
## 632 17148.837 2072.09302
## 633 17148.837 2072.09302
## 634 17148.837 2072.09302
## 635 17148.837 2072.09302
## 636 17148.837 2072.09302
## 637 17148.837 2072.09302
## 638 17148.837 2072.09302
## 639 17148.837 2072.09302
## 640 17148.837 2072.09302
## 641 17148.837 2072.09302
## 642 17148.837 2072.09302
## 643 17148.837 2072.09302
## 644 17148.837 2072.09302
## 645 17148.837 2072.09302
## 646 17148.837 2072.09302
## 647 17148.837 2072.09302
## 648 17148.837 2072.09302
## 649 10224.419 1513.95349
## 650 10224.419 1513.95349
## 651 10224.419 1513.95349
## 652 10224.419 1513.95349
## 653 10224.419 1513.95349
## 654 10224.419 1513.95349
## 655 10224.419 1513.95349
## 656 10224.419 1513.95349
## 657 10224.419 1513.95349
## 658 10224.419 1513.95349
## 659 10224.419 1513.95349
## 660 10224.419 1513.95349
## 661 10224.419 1513.95349
## 662 10224.419 1513.95349
## 663 10224.419 1513.95349
## 664 10224.419 1513.95349
## 665 10224.419 1513.95349
## 666 10224.419 1513.95349
## 667 10224.419 1513.95349
## 668 10224.419 1513.95349
## 669 10224.419 1513.95349
## 670 10224.419 1513.95349
## 671 10224.419 1513.95349
## 672 10224.419 1513.95349
## 673 10660.465 397.67442
## 674 10660.465 397.67442
## 675 10660.465 397.67442
## 676 10660.465 397.67442
## 677 10660.465 397.67442
## 678 10660.465 397.67442
## 679 10660.465 397.67442
## 680 10660.465 397.67442
## 681 10660.465 397.67442
## 682 10660.465 397.67442
## 683 10660.465 397.67442
## 684 10660.465 397.67442
## 685 10660.465 397.67442
## 686 10660.465 397.67442
## 687 10660.465 397.67442
## 688 10660.465 397.67442
## 689 10660.465 397.67442
## 690 10660.465 397.67442
## 691 10660.465 397.67442
## 692 10660.465 397.67442
## 693 10660.465 397.67442
## 694 10660.465 397.67442
## 695 10660.465 397.67442
## 696 10660.465 397.67442
## 697 5344.186 0.00000
## 698 5344.186 0.00000
## 699 5344.186 0.00000
## 700 5344.186 0.00000
## 701 5344.186 0.00000
## 702 5344.186 0.00000
## 703 5344.186 0.00000
## 704 5344.186 0.00000
## 705 5344.186 0.00000
## 706 5344.186 0.00000
## 707 5344.186 0.00000
## 708 5344.186 0.00000
## 709 5344.186 0.00000
## 710 5344.186 0.00000
## 711 5344.186 0.00000
## 712 5344.186 0.00000
## 713 5344.186 0.00000
## 714 5344.186 0.00000
## 715 5344.186 0.00000
## 716 5344.186 0.00000
## 717 5344.186 0.00000
## 718 5344.186 0.00000
## 719 5344.186 0.00000
## 720 5344.186 0.00000
## 721 4445.930 0.00000
## 722 4445.930 0.00000
## 723 4445.930 0.00000
## 724 4445.930 0.00000
## 725 4445.930 0.00000
## 726 4445.930 0.00000
## 727 4445.930 0.00000
## 728 4445.930 0.00000
## 729 4445.930 0.00000
## 730 4445.930 0.00000
## 731 4445.930 0.00000
## 732 4445.930 0.00000
## 733 4445.930 0.00000
## 734 4445.930 0.00000
## 735 4445.930 0.00000
## 736 4445.930 0.00000
## 737 4445.930 0.00000
## 738 4445.930 0.00000
## 739 4445.930 0.00000
## 740 4445.930 0.00000
## 741 4445.930 0.00000
## 742 4445.930 0.00000
## 743 4445.930 0.00000
## 744 4445.930 0.00000
## 745 2109.593 0.00000
## 746 2109.593 0.00000
## 747 2109.593 0.00000
## 748 2109.593 0.00000
## 749 2109.593 0.00000
## 750 2109.593 0.00000
## 751 2109.593 0.00000
## 752 2109.593 0.00000
## 753 2109.593 0.00000
## 754 2109.593 0.00000
## 755 2109.593 0.00000
## 756 2109.593 0.00000
## 757 2109.593 0.00000
## 758 2109.593 0.00000
## 759 2109.593 0.00000
## 760 2109.593 0.00000
## 761 2109.593 0.00000
## 762 2109.593 0.00000
## 763 2109.593 0.00000
## 764 2109.593 0.00000
## 765 2109.593 0.00000
## 766 2109.593 0.00000
## 767 2109.593 0.00000
## 768 2109.593 0.00000
## 769 1794.767 4812.20930
## 770 1794.767 4812.20930
## 771 1794.767 4812.20930
## 772 1794.767 4812.20930
## 773 1794.767 4812.20930
## 774 1794.767 4812.20930
## 775 1794.767 4812.20930
## 776 1794.767 4812.20930
## 777 1794.767 4812.20930
## 778 1794.767 4812.20930
## 779 1794.767 4812.20930
## 780 1794.767 4812.20930
## 781 1794.767 4812.20930
## 782 1794.767 4812.20930
## 783 1794.767 4812.20930
## 784 1794.767 4812.20930
## 785 1794.767 4812.20930
## 786 1794.767 4812.20930
## 787 1794.767 4812.20930
## 788 1794.767 4812.20930
## 789 1794.767 4812.20930
## 790 1794.767 4812.20930
## 791 1794.767 4812.20930
## 792 1794.767 4812.20930
## 793 8553.488 6587.79070
## 794 8553.488 6587.79070
## 795 8553.488 6587.79070
## 796 8553.488 6587.79070
## 797 8553.488 6587.79070
## 798 8553.488 6587.79070
## 799 8553.488 6587.79070
## 800 8553.488 6587.79070
## 801 8553.488 6587.79070
## 802 8553.488 6587.79070
## 803 8553.488 6587.79070
## 804 8553.488 6587.79070
## 805 8553.488 6587.79070
## 806 8553.488 6587.79070
## 807 8553.488 6587.79070
## 808 8553.488 6587.79070
## 809 8553.488 6587.79070
## 810 8553.488 6587.79070
## 811 8553.488 6587.79070
## 812 8553.488 6587.79070
## 813 8553.488 6587.79070
## 814 8553.488 6587.79070
## 815 8553.488 6587.79070
## 816 8553.488 6587.79070
## 817 10285.465 4200.00000
## 818 10285.465 4200.00000
## 819 10285.465 4200.00000
## 820 10285.465 4200.00000
## 821 10285.465 4200.00000
## 822 10285.465 4200.00000
## 823 10285.465 4200.00000
## 824 10285.465 4200.00000
## 825 10285.465 4200.00000
## 826 10285.465 4200.00000
## 827 10285.465 4200.00000
## 828 10285.465 4200.00000
## 829 10285.465 4200.00000
## 830 10285.465 4200.00000
## 831 10285.465 4200.00000
## 832 10285.465 4200.00000
## 833 10285.465 4200.00000
## 834 10285.465 4200.00000
## 835 10285.465 4200.00000
## 836 10285.465 4200.00000
## 837 10285.465 4200.00000
## 838 10285.465 4200.00000
## 839 10285.465 4200.00000
## 840 10285.465 4200.00000
## 841 8680.814 2202.90698
## 842 8680.814 2202.90698
## 843 8680.814 2202.90698
## 844 8680.814 2202.90698
## 845 8680.814 2202.90698
## 846 8680.814 2202.90698
## 847 8680.814 2202.90698
## 848 8680.814 2202.90698
## 849 8680.814 2202.90698
## 850 8680.814 2202.90698
## 851 8680.814 2202.90698
## 852 8680.814 2202.90698
## 853 8680.814 2202.90698
## 854 8680.814 2202.90698
## 855 8680.814 2202.90698
## 856 8680.814 2202.90698
## 857 8680.814 2202.90698
## 858 8680.814 2202.90698
## 859 8680.814 2202.90698
## 860 8680.814 2202.90698
## 861 8680.814 2202.90698
## 862 8680.814 2202.90698
## 863 8680.814 2202.90698
## 864 8680.814 2202.90698
## 865 13041.279 397.67442
## 866 13041.279 397.67442
## 867 13041.279 397.67442
## 868 13041.279 397.67442
## 869 13041.279 397.67442
## 870 13041.279 397.67442
## 871 13041.279 397.67442
## 872 13041.279 397.67442
## 873 13041.279 397.67442
## 874 13041.279 397.67442
## 875 13041.279 397.67442
## 876 13041.279 397.67442
## 877 13041.279 397.67442
## 878 13041.279 397.67442
## 879 13041.279 397.67442
## 880 13041.279 397.67442
## 881 13041.279 397.67442
## 882 13041.279 397.67442
## 883 13041.279 397.67442
## 884 13041.279 397.67442
## 885 13041.279 397.67442
## 886 13041.279 397.67442
## 887 13041.279 397.67442
## 888 13041.279 397.67442
## 889 8448.837 0.00000
## 890 8448.837 0.00000
## 891 8448.837 0.00000
## 892 8448.837 0.00000
## 893 8448.837 0.00000
## 894 8448.837 0.00000
## 895 8448.837 0.00000
## 896 8448.837 0.00000
## 897 8448.837 0.00000
## 898 8448.837 0.00000
## 899 8448.837 0.00000
## 900 8448.837 0.00000
## 901 8448.837 0.00000
## 902 8448.837 0.00000
## 903 8448.837 0.00000
## 904 8448.837 0.00000
## 905 8448.837 0.00000
## 906 8448.837 0.00000
## 907 8448.837 0.00000
## 908 8448.837 0.00000
## 909 8448.837 0.00000
## 910 8448.837 0.00000
## 911 8448.837 0.00000
## 912 8448.837 0.00000
## 913 9857.267 0.00000
## 914 9857.267 0.00000
## 915 9857.267 0.00000
## 916 9857.267 0.00000
## 917 9857.267 0.00000
## 918 9857.267 0.00000
## 919 9857.267 0.00000
## 920 9857.267 0.00000
## 921 9857.267 0.00000
## 922 9857.267 0.00000
## 923 9857.267 0.00000
## 924 9857.267 0.00000
## 925 9857.267 0.00000
## 926 9857.267 0.00000
## 927 9857.267 0.00000
## 928 9857.267 0.00000
## 929 9857.267 0.00000
## 930 9857.267 0.00000
## 931 9857.267 0.00000
## 932 9857.267 0.00000
## 933 9857.267 0.00000
## 934 9857.267 0.00000
## 935 9857.267 0.00000
## 936 9857.267 0.00000
## 937 16067.442 0.00000
## 938 16067.442 0.00000
## 939 16067.442 0.00000
## 940 16067.442 0.00000
## 941 16067.442 0.00000
## 942 16067.442 0.00000
## 943 16067.442 0.00000
## 944 16067.442 0.00000
## 945 16067.442 0.00000
## 946 16067.442 0.00000
## 947 16067.442 0.00000
## 948 16067.442 0.00000
## 949 16067.442 0.00000
## 950 16067.442 0.00000
## 951 16067.442 0.00000
## 952 16067.442 0.00000
## 953 16067.442 0.00000
## 954 16067.442 0.00000
## 955 16067.442 0.00000
## 956 16067.442 0.00000
## 957 16067.442 0.00000
## 958 16067.442 0.00000
## 959 16067.442 0.00000
## 960 16067.442 0.00000
## 961 1794.767 4812.20930
## 962 1794.767 4812.20930
## 963 1794.767 4812.20930
## 964 1794.767 4812.20930
## 965 1794.767 4812.20930
## 966 1794.767 4812.20930
## 967 1794.767 4812.20930
## 968 1794.767 4812.20930
## 969 1794.767 4812.20930
## 970 1794.767 4812.20930
## 971 1794.767 4812.20930
## 972 1794.767 4812.20930
## 973 1794.767 4812.20930
## 974 1794.767 4812.20930
## 975 1794.767 4812.20930
## 976 1794.767 4812.20930
## 977 1794.767 4812.20930
## 978 1794.767 4812.20930
## 979 1794.767 4812.20930
## 980 1794.767 4812.20930
## 981 1794.767 4812.20930
## 982 1794.767 4812.20930
## 983 1794.767 4812.20930
## 984 1794.767 4812.20930
## 985 7163.372 19306.39535
## 986 7163.372 19306.39535
## 987 7163.372 19306.39535
## 988 7163.372 19306.39535
## 989 7163.372 19306.39535
## 990 7163.372 19306.39535
## 991 7163.372 19306.39535
## 992 7163.372 19306.39535
## 993 7163.372 19306.39535
## 994 7163.372 19306.39535
## 995 7163.372 19306.39535
## 996 7163.372 19306.39535
## 997 7163.372 19306.39535
## 998 7163.372 19306.39535
## 999 7163.372 19306.39535
## 1000 7163.372 19306.39535
## 1001 7163.372 19306.39535
## 1002 7163.372 19306.39535
## 1003 7163.372 19306.39535
## 1004 7163.372 19306.39535
## 1005 7163.372 19306.39535
## 1006 7163.372 19306.39535
## 1007 7163.372 19306.39535
## 1008 7163.372 19306.39535
## 1009 15132.558 16220.93023
## 1010 15132.558 16220.93023
## 1011 15132.558 16220.93023
## 1012 15132.558 16220.93023
## 1013 15132.558 16220.93023
## 1014 15132.558 16220.93023
## 1015 15132.558 16220.93023
## 1016 15132.558 16220.93023
## 1017 15132.558 16220.93023
## 1018 15132.558 16220.93023
## 1019 15132.558 16220.93023
## 1020 15132.558 16220.93023
## 1021 15132.558 16220.93023
## 1022 15132.558 16220.93023
## 1023 15132.558 16220.93023
## 1024 15132.558 16220.93023
## 1025 15132.558 16220.93023
## 1026 15132.558 16220.93023
## 1027 15132.558 16220.93023
## 1028 15132.558 16220.93023
## 1029 15132.558 16220.93023
## 1030 15132.558 16220.93023
## 1031 15132.558 16220.93023
## 1032 15132.558 16220.93023
## 1033 8089.535 7716.27907
## 1034 8089.535 7716.27907
## 1035 8089.535 7716.27907
## 1036 8089.535 7716.27907
## 1037 8089.535 7716.27907
## 1038 8089.535 7716.27907
## 1039 8089.535 7716.27907
## 1040 8089.535 7716.27907
## 1041 8089.535 7716.27907
## 1042 8089.535 7716.27907
## 1043 8089.535 7716.27907
## 1044 8089.535 7716.27907
## 1045 8089.535 7716.27907
## 1046 8089.535 7716.27907
## 1047 8089.535 7716.27907
## 1048 8089.535 7716.27907
## 1049 8089.535 7716.27907
## 1050 8089.535 7716.27907
## 1051 8089.535 7716.27907
## 1052 8089.535 7716.27907
## 1053 8089.535 7716.27907
## 1054 8089.535 7716.27907
## 1055 8089.535 7716.27907
## 1056 8089.535 7716.27907
## 1057 9045.349 4128.48837
## 1058 9045.349 4128.48837
## 1059 9045.349 4128.48837
## 1060 9045.349 4128.48837
## 1061 9045.349 4128.48837
## 1062 9045.349 4128.48837
## 1063 9045.349 4128.48837
## 1064 9045.349 4128.48837
## 1065 9045.349 4128.48837
## 1066 9045.349 4128.48837
## 1067 9045.349 4128.48837
## 1068 9045.349 4128.48837
## 1069 9045.349 4128.48837
## 1070 9045.349 4128.48837
## 1071 9045.349 4128.48837
## 1072 9045.349 4128.48837
## 1073 9045.349 4128.48837
## 1074 9045.349 4128.48837
## 1075 9045.349 4128.48837
## 1076 9045.349 4128.48837
## 1077 9045.349 4128.48837
## 1078 9045.349 4128.48837
## 1079 9045.349 4128.48837
## 1080 9045.349 4128.48837
## 1081 9375.000 286.04651
## 1082 9375.000 286.04651
## 1083 9375.000 286.04651
## 1084 9375.000 286.04651
## 1085 9375.000 286.04651
## 1086 9375.000 286.04651
## 1087 9375.000 286.04651
## 1088 9375.000 286.04651
## 1089 9375.000 286.04651
## 1090 9375.000 286.04651
## 1091 9375.000 286.04651
## 1092 9375.000 286.04651
## 1093 9375.000 286.04651
## 1094 9375.000 286.04651
## 1095 9375.000 286.04651
## 1096 9375.000 286.04651
## 1097 9375.000 286.04651
## 1098 9375.000 286.04651
## 1099 9375.000 286.04651
## 1100 9375.000 286.04651
## 1101 9375.000 286.04651
## 1102 9375.000 286.04651
## 1103 9375.000 286.04651
## 1104 9375.000 286.04651
## 1105 15687.209 418.60465
## 1106 15687.209 418.60465
## 1107 15687.209 418.60465
## 1108 15687.209 418.60465
## 1109 15687.209 418.60465
## 1110 15687.209 418.60465
## 1111 15687.209 418.60465
## 1112 15687.209 418.60465
## 1113 15687.209 418.60465
## 1114 15687.209 418.60465
## 1115 15687.209 418.60465
## 1116 15687.209 418.60465
## 1117 15687.209 418.60465
## 1118 15687.209 418.60465
## 1119 15687.209 418.60465
## 1120 15687.209 418.60465
## 1121 15687.209 418.60465
## 1122 15687.209 418.60465
## 1123 15687.209 418.60465
## 1124 15687.209 418.60465
## 1125 15687.209 418.60465
## 1126 15687.209 418.60465
## 1127 15687.209 418.60465
## 1128 15687.209 418.60465
## 1129 15361.047 0.00000
## 1130 15361.047 0.00000
## 1131 15361.047 0.00000
## 1132 15361.047 0.00000
## 1133 15361.047 0.00000
## 1134 15361.047 0.00000
## 1135 15361.047 0.00000
## 1136 15361.047 0.00000
## 1137 15361.047 0.00000
## 1138 15361.047 0.00000
## 1139 15361.047 0.00000
## 1140 15361.047 0.00000
## 1141 15361.047 0.00000
## 1142 15361.047 0.00000
## 1143 15361.047 0.00000
## 1144 15361.047 0.00000
## 1145 15361.047 0.00000
## 1146 15361.047 0.00000
## 1147 15361.047 0.00000
## 1148 15361.047 0.00000
## 1149 15361.047 0.00000
## 1150 15361.047 0.00000
## 1151 15361.047 0.00000
## 1152 15361.047 0.00000
## 1153 1794.767 4812.20930
## 1154 1794.767 4812.20930
## 1155 1794.767 4812.20930
## 1156 1794.767 4812.20930
## 1157 1794.767 4812.20930
## 1158 1794.767 4812.20930
## 1159 1794.767 4812.20930
## 1160 1794.767 4812.20930
## 1161 1794.767 4812.20930
## 1162 1794.767 4812.20930
## 1163 1794.767 4812.20930
## 1164 1794.767 4812.20930
## 1165 1794.767 4812.20930
## 1166 1794.767 4812.20930
## 1167 1794.767 4812.20930
## 1168 1794.767 4812.20930
## 1169 1794.767 4812.20930
## 1170 1794.767 4812.20930
## 1171 1794.767 4812.20930
## 1172 1794.767 4812.20930
## 1173 1794.767 4812.20930
## 1174 1794.767 4812.20930
## 1175 1794.767 4812.20930
## 1176 1794.767 4812.20930
## 1177 8802.907 11405.23256
## 1178 8802.907 11405.23256
## 1179 8802.907 11405.23256
## 1180 8802.907 11405.23256
## 1181 8802.907 11405.23256
## 1182 8802.907 11405.23256
## 1183 8802.907 11405.23256
## 1184 8802.907 11405.23256
## 1185 8802.907 11405.23256
## 1186 8802.907 11405.23256
## 1187 8802.907 11405.23256
## 1188 8802.907 11405.23256
## 1189 8802.907 11405.23256
## 1190 8802.907 11405.23256
## 1191 8802.907 11405.23256
## 1192 8802.907 11405.23256
## 1193 8802.907 11405.23256
## 1194 8802.907 11405.23256
## 1195 8802.907 11405.23256
## 1196 8802.907 11405.23256
## 1197 8802.907 11405.23256
## 1198 8802.907 11405.23256
## 1199 8802.907 11405.23256
## 1200 8802.907 11405.23256
## 1201 16022.093 5023.25581
## 1202 16022.093 5023.25581
## 1203 16022.093 5023.25581
## 1204 16022.093 5023.25581
## 1205 16022.093 5023.25581
## 1206 16022.093 5023.25581
## 1207 16022.093 5023.25581
## 1208 16022.093 5023.25581
## 1209 16022.093 5023.25581
## 1210 16022.093 5023.25581
## 1211 16022.093 5023.25581
## 1212 16022.093 5023.25581
## 1213 16022.093 5023.25581
## 1214 16022.093 5023.25581
## 1215 16022.093 5023.25581
## 1216 16022.093 5023.25581
## 1217 16022.093 5023.25581
## 1218 16022.093 5023.25581
## 1219 16022.093 5023.25581
## 1220 16022.093 5023.25581
## 1221 16022.093 5023.25581
## 1222 16022.093 5023.25581
## 1223 16022.093 5023.25581
## 1224 16022.093 5023.25581
## 1225 16409.302 4428.48837
## 1226 16409.302 4428.48837
## 1227 16409.302 4428.48837
## 1228 16409.302 4428.48837
## 1229 16409.302 4428.48837
## 1230 16409.302 4428.48837
## 1231 16409.302 4428.48837
## 1232 16409.302 4428.48837
## 1233 16409.302 4428.48837
## 1234 16409.302 4428.48837
## 1235 16409.302 4428.48837
## 1236 16409.302 4428.48837
## 1237 16409.302 4428.48837
## 1238 16409.302 4428.48837
## 1239 16409.302 4428.48837
## 1240 16409.302 4428.48837
## 1241 16409.302 4428.48837
## 1242 16409.302 4428.48837
## 1243 16409.302 4428.48837
## 1244 16409.302 4428.48837
## 1245 16409.302 4428.48837
## 1246 16409.302 4428.48837
## 1247 16409.302 4428.48837
## 1248 16409.302 4428.48837
## 1249 12725.581 613.95349
## 1250 12725.581 613.95349
## 1251 12725.581 613.95349
## 1252 12725.581 613.95349
## 1253 12725.581 613.95349
## 1254 12725.581 613.95349
## 1255 12725.581 613.95349
## 1256 12725.581 613.95349
## 1257 12725.581 613.95349
## 1258 12725.581 613.95349
## 1259 12725.581 613.95349
## 1260 12725.581 613.95349
## 1261 12725.581 613.95349
## 1262 12725.581 613.95349
## 1263 12725.581 613.95349
## 1264 12725.581 613.95349
## 1265 12725.581 613.95349
## 1266 12725.581 613.95349
## 1267 12725.581 613.95349
## 1268 12725.581 613.95349
## 1269 12725.581 613.95349
## 1270 12725.581 613.95349
## 1271 12725.581 613.95349
## 1272 12725.581 613.95349
## 1273 7805.233 1123.25581
## 1274 7805.233 1123.25581
## 1275 7805.233 1123.25581
## 1276 7805.233 1123.25581
## 1277 7805.233 1123.25581
## 1278 7805.233 1123.25581
## 1279 7805.233 1123.25581
## 1280 7805.233 1123.25581
## 1281 7805.233 1123.25581
## 1282 7805.233 1123.25581
## 1283 7805.233 1123.25581
## 1284 7805.233 1123.25581
## 1285 7805.233 1123.25581
## 1286 7805.233 1123.25581
## 1287 7805.233 1123.25581
## 1288 7805.233 1123.25581
## 1289 7805.233 1123.25581
## 1290 7805.233 1123.25581
## 1291 7805.233 1123.25581
## 1292 7805.233 1123.25581
## 1293 7805.233 1123.25581
## 1294 7805.233 1123.25581
## 1295 7805.233 1123.25581
## 1296 7805.233 1123.25581
## 1297 12434.302 0.00000
## 1298 12434.302 0.00000
## 1299 12434.302 0.00000
## 1300 12434.302 0.00000
## 1301 12434.302 0.00000
## 1302 12434.302 0.00000
## 1303 12434.302 0.00000
## 1304 12434.302 0.00000
## 1305 12434.302 0.00000
## 1306 12434.302 0.00000
## 1307 12434.302 0.00000
## 1308 12434.302 0.00000
## 1309 12434.302 0.00000
## 1310 12434.302 0.00000
## 1311 12434.302 0.00000
## 1312 12434.302 0.00000
## 1313 12434.302 0.00000
## 1314 12434.302 0.00000
## 1315 12434.302 0.00000
## 1316 12434.302 0.00000
## 1317 12434.302 0.00000
## 1318 12434.302 0.00000
## 1319 12434.302 0.00000
## 1320 12434.302 0.00000
## 1321 10377.035 0.00000
## 1322 10377.035 0.00000
## 1323 10377.035 0.00000
## 1324 10377.035 0.00000
## 1325 10377.035 0.00000
## 1326 10377.035 0.00000
## 1327 10377.035 0.00000
## 1328 10377.035 0.00000
## 1329 10377.035 0.00000
## 1330 10377.035 0.00000
## 1331 10377.035 0.00000
## 1332 10377.035 0.00000
## 1333 10377.035 0.00000
## 1334 10377.035 0.00000
## 1335 10377.035 0.00000
## 1336 10377.035 0.00000
## 1337 10377.035 0.00000
## 1338 10377.035 0.00000
## 1339 10377.035 0.00000
## 1340 10377.035 0.00000
## 1341 10377.035 0.00000
## 1342 10377.035 0.00000
## 1343 10377.035 0.00000
## 1344 10377.035 0.00000
## 1345 1794.767 4812.20930
## 1346 1794.767 4812.20930
## 1347 1794.767 4812.20930
## 1348 1794.767 4812.20930
## 1349 1794.767 4812.20930
## 1350 1794.767 4812.20930
## 1351 1794.767 4812.20930
## 1352 1794.767 4812.20930
## 1353 1794.767 4812.20930
## 1354 1794.767 4812.20930
## 1355 1794.767 4812.20930
## 1356 1794.767 4812.20930
## 1357 1794.767 4812.20930
## 1358 1794.767 4812.20930
## 1359 1794.767 4812.20930
## 1360 1794.767 4812.20930
## 1361 1794.767 4812.20930
## 1362 1794.767 4812.20930
## 1363 1794.767 4812.20930
## 1364 1794.767 4812.20930
## 1365 1794.767 4812.20930
## 1366 1794.767 4812.20930
## 1367 1794.767 4812.20930
## 1368 1794.767 4812.20930
## 1369 7451.163 16236.62791
## 1370 7451.163 16236.62791
## 1371 7451.163 16236.62791
## 1372 7451.163 16236.62791
## 1373 7451.163 16236.62791
## 1374 7451.163 16236.62791
## 1375 7451.163 16236.62791
## 1376 7451.163 16236.62791
## 1377 7451.163 16236.62791
## 1378 7451.163 16236.62791
## 1379 7451.163 16236.62791
## 1380 7451.163 16236.62791
## 1381 7451.163 16236.62791
## 1382 7451.163 16236.62791
## 1383 7451.163 16236.62791
## 1384 7451.163 16236.62791
## 1385 7451.163 16236.62791
## 1386 7451.163 16236.62791
## 1387 7451.163 16236.62791
## 1388 7451.163 16236.62791
## 1389 7451.163 16236.62791
## 1390 7451.163 16236.62791
## 1391 7451.163 16236.62791
## 1392 7451.163 16236.62791
## 1393 16135.465 5886.62791
## 1394 16135.465 5886.62791
## 1395 16135.465 5886.62791
## 1396 16135.465 5886.62791
## 1397 16135.465 5886.62791
## 1398 16135.465 5886.62791
## 1399 16135.465 5886.62791
## 1400 16135.465 5886.62791
## 1401 16135.465 5886.62791
## 1402 16135.465 5886.62791
## 1403 16135.465 5886.62791
## 1404 16135.465 5886.62791
## 1405 16135.465 5886.62791
## 1406 16135.465 5886.62791
## 1407 16135.465 5886.62791
## 1408 16135.465 5886.62791
## 1409 16135.465 5886.62791
## 1410 16135.465 5886.62791
## 1411 16135.465 5886.62791
## 1412 16135.465 5886.62791
## 1413 16135.465 5886.62791
## 1414 16135.465 5886.62791
## 1415 16135.465 5886.62791
## 1416 16135.465 5886.62791
## 1417 8307.558 4803.48837
## 1418 8307.558 4803.48837
## 1419 8307.558 4803.48837
## 1420 8307.558 4803.48837
## 1421 8307.558 4803.48837
## 1422 8307.558 4803.48837
## 1423 8307.558 4803.48837
## 1424 8307.558 4803.48837
## 1425 8307.558 4803.48837
## 1426 8307.558 4803.48837
## 1427 8307.558 4803.48837
## 1428 8307.558 4803.48837
## 1429 8307.558 4803.48837
## 1430 8307.558 4803.48837
## 1431 8307.558 4803.48837
## 1432 8307.558 4803.48837
## 1433 8307.558 4803.48837
## 1434 8307.558 4803.48837
## 1435 8307.558 4803.48837
## 1436 8307.558 4803.48837
## 1437 8307.558 4803.48837
## 1438 8307.558 4803.48837
## 1439 8307.558 4803.48837
## 1440 8307.558 4803.48837
## 1441 10449.419 613.95349
## 1442 10449.419 613.95349
## 1443 10449.419 613.95349
## 1444 10449.419 613.95349
## 1445 10449.419 613.95349
## 1446 10449.419 613.95349
## 1447 10449.419 613.95349
## 1448 10449.419 613.95349
## 1449 10449.419 613.95349
## 1450 10449.419 613.95349
## 1451 10449.419 613.95349
## 1452 10449.419 613.95349
## 1453 10449.419 613.95349
## 1454 10449.419 613.95349
## 1455 10449.419 613.95349
## 1456 10449.419 613.95349
## 1457 10449.419 613.95349
## 1458 10449.419 613.95349
## 1459 10449.419 613.95349
## 1460 10449.419 613.95349
## 1461 10449.419 613.95349
## 1462 10449.419 613.95349
## 1463 10449.419 613.95349
## 1464 10449.419 613.95349
## 1465 3279.070 286.04651
## 1466 3279.070 286.04651
## 1467 3279.070 286.04651
## 1468 3279.070 286.04651
## 1469 3279.070 286.04651
## 1470 3279.070 286.04651
## 1471 3279.070 286.04651
## 1472 3279.070 286.04651
## 1473 3279.070 286.04651
## 1474 3279.070 286.04651
## 1475 3279.070 286.04651
## 1476 3279.070 286.04651
## 1477 3279.070 286.04651
## 1478 3279.070 286.04651
## 1479 3279.070 286.04651
## 1480 3279.070 286.04651
## 1481 3279.070 286.04651
## 1482 3279.070 286.04651
## 1483 3279.070 286.04651
## 1484 3279.070 286.04651
## 1485 3279.070 286.04651
## 1486 3279.070 286.04651
## 1487 3279.070 286.04651
## 1488 3279.070 286.04651
## 1489 13829.651 327.03488
## 1490 13829.651 327.03488
## 1491 13829.651 327.03488
## 1492 13829.651 327.03488
## 1493 13829.651 327.03488
## 1494 13829.651 327.03488
## 1495 13829.651 327.03488
## 1496 13829.651 327.03488
## 1497 13829.651 327.03488
## 1498 13829.651 327.03488
## 1499 13829.651 327.03488
## 1500 13829.651 327.03488
## 1501 13829.651 327.03488
## 1502 13829.651 327.03488
## 1503 13829.651 327.03488
## 1504 13829.651 327.03488
## 1505 13829.651 327.03488
## 1506 13829.651 327.03488
## 1507 13829.651 327.03488
## 1508 13829.651 327.03488
## 1509 13829.651 327.03488
## 1510 13829.651 327.03488
## 1511 13829.651 327.03488
## 1512 13829.651 327.03488
## 1513 19895.930 0.00000
## 1514 19895.930 0.00000
## 1515 19895.930 0.00000
## 1516 19895.930 0.00000
## 1517 19895.930 0.00000
## 1518 19895.930 0.00000
## 1519 19895.930 0.00000
## 1520 19895.930 0.00000
## 1521 19895.930 0.00000
## 1522 19895.930 0.00000
## 1523 19895.930 0.00000
## 1524 19895.930 0.00000
## 1525 19895.930 0.00000
## 1526 19895.930 0.00000
## 1527 19895.930 0.00000
## 1528 19895.930 0.00000
## 1529 19895.930 0.00000
## 1530 19895.930 0.00000
## 1531 19895.930 0.00000
## 1532 19895.930 0.00000
## 1533 19895.930 0.00000
## 1534 19895.930 0.00000
## 1535 19895.930 0.00000
## 1536 19895.930 0.00000
## 1537 1794.767 4812.20930
## 1538 1794.767 4812.20930
## 1539 1794.767 4812.20930
## 1540 1794.767 4812.20930
## 1541 1794.767 4812.20930
## 1542 1794.767 4812.20930
## 1543 1794.767 4812.20930
## 1544 1794.767 4812.20930
## 1545 1794.767 4812.20930
## 1546 1794.767 4812.20930
## 1547 1794.767 4812.20930
## 1548 1794.767 4812.20930
## 1549 1794.767 4812.20930
## 1550 1794.767 4812.20930
## 1551 1794.767 4812.20930
## 1552 1794.767 4812.20930
## 1553 1794.767 4812.20930
## 1554 1794.767 4812.20930
## 1555 1794.767 4812.20930
## 1556 1794.767 4812.20930
## 1557 1794.767 4812.20930
## 1558 1794.767 4812.20930
## 1559 1794.767 4812.20930
## 1560 1794.767 4812.20930
## 1561 9334.884 10568.02326
## 1562 9334.884 10568.02326
## 1563 9334.884 10568.02326
## 1564 9334.884 10568.02326
## 1565 9334.884 10568.02326
## 1566 9334.884 10568.02326
## 1567 9334.884 10568.02326
## 1568 9334.884 10568.02326
## 1569 9334.884 10568.02326
## 1570 9334.884 10568.02326
## 1571 9334.884 10568.02326
## 1572 9334.884 10568.02326
## 1573 9334.884 10568.02326
## 1574 9334.884 10568.02326
## 1575 9334.884 10568.02326
## 1576 9334.884 10568.02326
## 1577 9334.884 10568.02326
## 1578 9334.884 10568.02326
## 1579 9334.884 10568.02326
## 1580 9334.884 10568.02326
## 1581 9334.884 10568.02326
## 1582 9334.884 10568.02326
## 1583 9334.884 10568.02326
## 1584 9334.884 10568.02326
## 1585 20522.093 1936.04651
## 1586 20522.093 1936.04651
## 1587 20522.093 1936.04651
## 1588 20522.093 1936.04651
## 1589 20522.093 1936.04651
## 1590 20522.093 1936.04651
## 1591 20522.093 1936.04651
## 1592 20522.093 1936.04651
## 1593 20522.093 1936.04651
## 1594 20522.093 1936.04651
## 1595 20522.093 1936.04651
## 1596 20522.093 1936.04651
## 1597 20522.093 1936.04651
## 1598 20522.093 1936.04651
## 1599 20522.093 1936.04651
## 1600 20522.093 1936.04651
## 1601 20522.093 1936.04651
## 1602 20522.093 1936.04651
## 1603 20522.093 1936.04651
## 1604 20522.093 1936.04651
## 1605 20522.093 1936.04651
## 1606 20522.093 1936.04651
## 1607 20522.093 1936.04651
## 1608 20522.093 1936.04651
## 1609 11761.047 2256.97674
## 1610 11761.047 2256.97674
## 1611 11761.047 2256.97674
## 1612 11761.047 2256.97674
## 1613 11761.047 2256.97674
## 1614 11761.047 2256.97674
## 1615 11761.047 2256.97674
## 1616 11761.047 2256.97674
## 1617 11761.047 2256.97674
## 1618 11761.047 2256.97674
## 1619 11761.047 2256.97674
## 1620 11761.047 2256.97674
## 1621 11761.047 2256.97674
## 1622 11761.047 2256.97674
## 1623 11761.047 2256.97674
## 1624 11761.047 2256.97674
## 1625 11761.047 2256.97674
## 1626 11761.047 2256.97674
## 1627 11761.047 2256.97674
## 1628 11761.047 2256.97674
## 1629 11761.047 2256.97674
## 1630 11761.047 2256.97674
## 1631 11761.047 2256.97674
## 1632 11761.047 2256.97674
## 1633 10379.651 613.95349
## 1634 10379.651 613.95349
## 1635 10379.651 613.95349
## 1636 10379.651 613.95349
## 1637 10379.651 613.95349
## 1638 10379.651 613.95349
## 1639 10379.651 613.95349
## 1640 10379.651 613.95349
## 1641 10379.651 613.95349
## 1642 10379.651 613.95349
## 1643 10379.651 613.95349
## 1644 10379.651 613.95349
## 1645 10379.651 613.95349
## 1646 10379.651 613.95349
## 1647 10379.651 613.95349
## 1648 10379.651 613.95349
## 1649 10379.651 613.95349
## 1650 10379.651 613.95349
## 1651 10379.651 613.95349
## 1652 10379.651 613.95349
## 1653 10379.651 613.95349
## 1654 10379.651 613.95349
## 1655 10379.651 613.95349
## 1656 10379.651 613.95349
## 1657 4901.163 286.04651
## 1658 4901.163 286.04651
## 1659 4901.163 286.04651
## 1660 4901.163 286.04651
## 1661 4901.163 286.04651
## 1662 4901.163 286.04651
## 1663 4901.163 286.04651
## 1664 4901.163 286.04651
## 1665 4901.163 286.04651
## 1666 4901.163 286.04651
## 1667 4901.163 286.04651
## 1668 4901.163 286.04651
## 1669 4901.163 286.04651
## 1670 4901.163 286.04651
## 1671 4901.163 286.04651
## 1672 4901.163 286.04651
## 1673 4901.163 286.04651
## 1674 4901.163 286.04651
## 1675 4901.163 286.04651
## 1676 4901.163 286.04651
## 1677 4901.163 286.04651
## 1678 4901.163 286.04651
## 1679 4901.163 286.04651
## 1680 4901.163 286.04651
## 1681 4332.558 0.00000
## 1682 4332.558 0.00000
## 1683 4332.558 0.00000
## 1684 4332.558 0.00000
## 1685 4332.558 0.00000
## 1686 4332.558 0.00000
## 1687 4332.558 0.00000
## 1688 4332.558 0.00000
## 1689 4332.558 0.00000
## 1690 4332.558 0.00000
## 1691 4332.558 0.00000
## 1692 4332.558 0.00000
## 1693 4332.558 0.00000
## 1694 4332.558 0.00000
## 1695 4332.558 0.00000
## 1696 4332.558 0.00000
## 1697 4332.558 0.00000
## 1698 4332.558 0.00000
## 1699 4332.558 0.00000
## 1700 4332.558 0.00000
## 1701 4332.558 0.00000
## 1702 4332.558 0.00000
## 1703 4332.558 0.00000
## 1704 4332.558 0.00000
## 1705 2048.547 0.00000
## 1706 2048.547 0.00000
## 1707 2048.547 0.00000
## 1708 2048.547 0.00000
## 1709 2048.547 0.00000
## 1710 2048.547 0.00000
## 1711 2048.547 0.00000
## 1712 2048.547 0.00000
## 1713 2048.547 0.00000
## 1714 2048.547 0.00000
## 1715 2048.547 0.00000
## 1716 2048.547 0.00000
## 1717 2048.547 0.00000
## 1718 2048.547 0.00000
## 1719 2048.547 0.00000
## 1720 2048.547 0.00000
## 1721 2048.547 0.00000
## 1722 2048.547 0.00000
## 1723 2048.547 0.00000
## 1724 2048.547 0.00000
## 1725 2048.547 0.00000
## 1726 2048.547 0.00000
## 1727 2048.547 0.00000
## 1728 2048.547 0.00000
## 1729 1794.767 4812.20930
## 1730 1794.767 4812.20930
## 1731 1794.767 4812.20930
## 1732 1794.767 4812.20930
## 1733 1794.767 4812.20930
## 1734 1794.767 4812.20930
## 1735 1794.767 4812.20930
## 1736 1794.767 4812.20930
## 1737 1794.767 4812.20930
## 1738 1794.767 4812.20930
## 1739 1794.767 4812.20930
## 1740 1794.767 4812.20930
## 1741 1794.767 4812.20930
## 1742 1794.767 4812.20930
## 1743 1794.767 4812.20930
## 1744 1794.767 4812.20930
## 1745 1794.767 4812.20930
## 1746 1794.767 4812.20930
## 1747 1794.767 4812.20930
## 1748 1794.767 4812.20930
## 1749 1794.767 4812.20930
## 1750 1794.767 4812.20930
## 1751 1794.767 4812.20930
## 1752 1794.767 4812.20930
## 1753 7660.465 5588.37209
## 1754 7660.465 5588.37209
## 1755 7660.465 5588.37209
## 1756 7660.465 5588.37209
## 1757 7660.465 5588.37209
## 1758 7660.465 5588.37209
## 1759 7660.465 5588.37209
## 1760 7660.465 5588.37209
## 1761 7660.465 5588.37209
## 1762 7660.465 5588.37209
## 1763 7660.465 5588.37209
## 1764 7660.465 5588.37209
## 1765 7660.465 5588.37209
## 1766 7660.465 5588.37209
## 1767 7660.465 5588.37209
## 1768 7660.465 5588.37209
## 1769 7660.465 5588.37209
## 1770 7660.465 5588.37209
## 1771 7660.465 5588.37209
## 1772 7660.465 5588.37209
## 1773 7660.465 5588.37209
## 1774 7660.465 5588.37209
## 1775 7660.465 5588.37209
## 1776 7660.465 5588.37209
## 1777 13658.721 4063.95349
## 1778 13658.721 4063.95349
## 1779 13658.721 4063.95349
## 1780 13658.721 4063.95349
## 1781 13658.721 4063.95349
## 1782 13658.721 4063.95349
## 1783 13658.721 4063.95349
## 1784 13658.721 4063.95349
## 1785 13658.721 4063.95349
## 1786 13658.721 4063.95349
## 1787 13658.721 4063.95349
## 1788 13658.721 4063.95349
## 1789 13658.721 4063.95349
## 1790 13658.721 4063.95349
## 1791 13658.721 4063.95349
## 1792 13658.721 4063.95349
## 1793 13658.721 4063.95349
## 1794 13658.721 4063.95349
## 1795 13658.721 4063.95349
## 1796 13658.721 4063.95349
## 1797 13658.721 4063.95349
## 1798 13658.721 4063.95349
## 1799 13658.721 4063.95349
## 1800 13658.721 4063.95349
## 1801 10217.442 2945.93023
## 1802 10217.442 2945.93023
## 1803 10217.442 2945.93023
## 1804 10217.442 2945.93023
## 1805 10217.442 2945.93023
## 1806 10217.442 2945.93023
## 1807 10217.442 2945.93023
## 1808 10217.442 2945.93023
## 1809 10217.442 2945.93023
## 1810 10217.442 2945.93023
## 1811 10217.442 2945.93023
## 1812 10217.442 2945.93023
## 1813 10217.442 2945.93023
## 1814 10217.442 2945.93023
## 1815 10217.442 2945.93023
## 1816 10217.442 2945.93023
## 1817 10217.442 2945.93023
## 1818 10217.442 2945.93023
## 1819 10217.442 2945.93023
## 1820 10217.442 2945.93023
## 1821 10217.442 2945.93023
## 1822 10217.442 2945.93023
## 1823 10217.442 2945.93023
## 1824 10217.442 2945.93023
## 1825 12760.465 613.95349
## 1826 12760.465 613.95349
## 1827 12760.465 613.95349
## 1828 12760.465 613.95349
## 1829 12760.465 613.95349
## 1830 12760.465 613.95349
## 1831 12760.465 613.95349
## 1832 12760.465 613.95349
## 1833 12760.465 613.95349
## 1834 12760.465 613.95349
## 1835 12760.465 613.95349
## 1836 12760.465 613.95349
## 1837 12760.465 613.95349
## 1838 12760.465 613.95349
## 1839 12760.465 613.95349
## 1840 12760.465 613.95349
## 1841 12760.465 613.95349
## 1842 12760.465 613.95349
## 1843 12760.465 613.95349
## 1844 12760.465 613.95349
## 1845 12760.465 613.95349
## 1846 12760.465 613.95349
## 1847 12760.465 613.95349
## 1848 12760.465 613.95349
## 1849 8005.814 286.04651
## 1850 8005.814 286.04651
## 1851 8005.814 286.04651
## 1852 8005.814 286.04651
## 1853 8005.814 286.04651
## 1854 8005.814 286.04651
## 1855 8005.814 286.04651
## 1856 8005.814 286.04651
## 1857 8005.814 286.04651
## 1858 8005.814 286.04651
## 1859 8005.814 286.04651
## 1860 8005.814 286.04651
## 1861 8005.814 286.04651
## 1862 8005.814 286.04651
## 1863 8005.814 286.04651
## 1864 8005.814 286.04651
## 1865 8005.814 286.04651
## 1866 8005.814 286.04651
## 1867 8005.814 286.04651
## 1868 8005.814 286.04651
## 1869 8005.814 286.04651
## 1870 8005.814 286.04651
## 1871 8005.814 286.04651
## 1872 8005.814 286.04651
## 1873 9743.895 0.00000
## 1874 9743.895 0.00000
## 1875 9743.895 0.00000
## 1876 9743.895 0.00000
## 1877 9743.895 0.00000
## 1878 9743.895 0.00000
## 1879 9743.895 0.00000
## 1880 9743.895 0.00000
## 1881 9743.895 0.00000
## 1882 9743.895 0.00000
## 1883 9743.895 0.00000
## 1884 9743.895 0.00000
## 1885 9743.895 0.00000
## 1886 9743.895 0.00000
## 1887 9743.895 0.00000
## 1888 9743.895 0.00000
## 1889 9743.895 0.00000
## 1890 9743.895 0.00000
## 1891 9743.895 0.00000
## 1892 9743.895 0.00000
## 1893 9743.895 0.00000
## 1894 9743.895 0.00000
## 1895 9743.895 0.00000
## 1896 9743.895 0.00000
## 1897 16006.395 0.00000
## 1898 16006.395 0.00000
## 1899 16006.395 0.00000
## 1900 16006.395 0.00000
## 1901 16006.395 0.00000
## 1902 16006.395 0.00000
## 1903 16006.395 0.00000
## 1904 16006.395 0.00000
## 1905 16006.395 0.00000
## 1906 16006.395 0.00000
## 1907 16006.395 0.00000
## 1908 16006.395 0.00000
## 1909 16006.395 0.00000
## 1910 16006.395 0.00000
## 1911 16006.395 0.00000
## 1912 16006.395 0.00000
## 1913 16006.395 0.00000
## 1914 16006.395 0.00000
## 1915 16006.395 0.00000
## 1916 16006.395 0.00000
## 1917 16006.395 0.00000
## 1918 16006.395 0.00000
## 1919 16006.395 0.00000
## 1920 16006.395 0.00000
## 1921 1794.767 4812.20930
## 1922 1794.767 4812.20930
## 1923 1794.767 4812.20930
## 1924 1794.767 4812.20930
## 1925 1794.767 4812.20930
## 1926 1794.767 4812.20930
## 1927 1794.767 4812.20930
## 1928 1794.767 4812.20930
## 1929 1794.767 4812.20930
## 1930 1794.767 4812.20930
## 1931 1794.767 4812.20930
## 1932 1794.767 4812.20930
## 1933 1794.767 4812.20930
## 1934 1794.767 4812.20930
## 1935 1794.767 4812.20930
## 1936 1794.767 4812.20930
## 1937 1794.767 4812.20930
## 1938 1794.767 4812.20930
## 1939 1794.767 4812.20930
## 1940 1794.767 4812.20930
## 1941 1794.767 4812.20930
## 1942 1794.767 4812.20930
## 1943 1794.767 4812.20930
## 1944 1794.767 4812.20930
## 1945 7573.256 19557.55814
## 1946 7573.256 19557.55814
## 1947 7573.256 19557.55814
## 1948 7573.256 19557.55814
## 1949 7573.256 19557.55814
## 1950 7573.256 19557.55814
## 1951 7573.256 19557.55814
## 1952 7573.256 19557.55814
## 1953 7573.256 19557.55814
## 1954 7573.256 19557.55814
## 1955 7573.256 19557.55814
## 1956 7573.256 19557.55814
## 1957 7573.256 19557.55814
## 1958 7573.256 19557.55814
## 1959 7573.256 19557.55814
## 1960 7573.256 19557.55814
## 1961 7573.256 19557.55814
## 1962 7573.256 19557.55814
## 1963 7573.256 19557.55814
## 1964 7573.256 19557.55814
## 1965 7573.256 19557.55814
## 1966 7573.256 19557.55814
## 1967 7573.256 19557.55814
## 1968 7573.256 19557.55814
## 1969 11834.302 16130.23256
## 1970 11834.302 16130.23256
## 1971 11834.302 16130.23256
## 1972 11834.302 16130.23256
## 1973 11834.302 16130.23256
## 1974 11834.302 16130.23256
## 1975 11834.302 16130.23256
## 1976 11834.302 16130.23256
## 1977 11834.302 16130.23256
## 1978 11834.302 16130.23256
## 1979 11834.302 16130.23256
## 1980 11834.302 16130.23256
## 1981 11834.302 16130.23256
## 1982 11834.302 16130.23256
## 1983 11834.302 16130.23256
## 1984 11834.302 16130.23256
## 1985 11834.302 16130.23256
## 1986 11834.302 16130.23256
## 1987 11834.302 16130.23256
## 1988 11834.302 16130.23256
## 1989 11834.302 16130.23256
## 1990 11834.302 16130.23256
## 1991 11834.302 16130.23256
## 1992 11834.302 16130.23256
## 1993 8497.674 6549.41860
## 1994 8497.674 6549.41860
## 1995 8497.674 6549.41860
## 1996 8497.674 6549.41860
## 1997 8497.674 6549.41860
## 1998 8497.674 6549.41860
## 1999 8497.674 6549.41860
## 2000 8497.674 6549.41860
## 2001 8497.674 6549.41860
## 2002 8497.674 6549.41860
## 2003 8497.674 6549.41860
## 2004 8497.674 6549.41860
## 2005 8497.674 6549.41860
## 2006 8497.674 6549.41860
## 2007 8497.674 6549.41860
## 2008 8497.674 6549.41860
## 2009 8497.674 6549.41860
## 2010 8497.674 6549.41860
## 2011 8497.674 6549.41860
## 2012 8497.674 6549.41860
## 2013 8497.674 6549.41860
## 2014 8497.674 6549.41860
## 2015 8497.674 6549.41860
## 2016 8497.674 6549.41860
## 2017 9950.581 3514.53488
## 2018 9950.581 3514.53488
## 2019 9950.581 3514.53488
## 2020 9950.581 3514.53488
## 2021 9950.581 3514.53488
## 2022 9950.581 3514.53488
## 2023 9950.581 3514.53488
## 2024 9950.581 3514.53488
## 2025 9950.581 3514.53488
## 2026 9950.581 3514.53488
## 2027 9950.581 3514.53488
## 2028 9950.581 3514.53488
## 2029 9950.581 3514.53488
## 2030 9950.581 3514.53488
## 2031 9950.581 3514.53488
## 2032 9950.581 3514.53488
## 2033 9950.581 3514.53488
## 2034 9950.581 3514.53488
## 2035 9950.581 3514.53488
## 2036 9950.581 3514.53488
## 2037 9950.581 3514.53488
## 2038 9950.581 3514.53488
## 2039 9950.581 3514.53488
## 2040 9950.581 3514.53488
## 2041 9680.233 94.18605
## 2042 9680.233 94.18605
## 2043 9680.233 94.18605
## 2044 9680.233 94.18605
## 2045 9680.233 94.18605
## 2046 9680.233 94.18605
## 2047 9680.233 94.18605
## 2048 9680.233 94.18605
## 2049 9680.233 94.18605
## 2050 9680.233 94.18605
## 2051 9680.233 94.18605
## 2052 9680.233 94.18605
## 2053 9680.233 94.18605
## 2054 9680.233 94.18605
## 2055 9680.233 94.18605
## 2056 9680.233 94.18605
## 2057 9680.233 94.18605
## 2058 9680.233 94.18605
## 2059 9680.233 94.18605
## 2060 9680.233 94.18605
## 2061 9680.233 94.18605
## 2062 9680.233 94.18605
## 2063 9680.233 94.18605
## 2064 9680.233 94.18605
## 2065 15496.221 418.60465
## 2066 15496.221 418.60465
## 2067 15496.221 418.60465
## 2068 15496.221 418.60465
## 2069 15496.221 418.60465
## 2070 15496.221 418.60465
## 2071 15496.221 418.60465
## 2072 15496.221 418.60465
## 2073 15496.221 418.60465
## 2074 15496.221 418.60465
## 2075 15496.221 418.60465
## 2076 15496.221 418.60465
## 2077 15496.221 418.60465
## 2078 15496.221 418.60465
## 2079 15496.221 418.60465
## 2080 15496.221 418.60465
## 2081 15496.221 418.60465
## 2082 15496.221 418.60465
## 2083 15496.221 418.60465
## 2084 15496.221 418.60465
## 2085 15496.221 418.60465
## 2086 15496.221 418.60465
## 2087 15496.221 418.60465
## 2088 15496.221 418.60465
## 2089 15620.930 109.01163
## 2090 15620.930 109.01163
## 2091 15620.930 109.01163
## 2092 15620.930 109.01163
## 2093 15620.930 109.01163
## 2094 15620.930 109.01163
## 2095 15620.930 109.01163
## 2096 15620.930 109.01163
## 2097 15620.930 109.01163
## 2098 15620.930 109.01163
## 2099 15620.930 109.01163
## 2100 15620.930 109.01163
## 2101 15620.930 109.01163
## 2102 15620.930 109.01163
## 2103 15620.930 109.01163
## 2104 15620.930 109.01163
## 2105 15620.930 109.01163
## 2106 15620.930 109.01163
## 2107 15620.930 109.01163
## 2108 15620.930 109.01163
## 2109 15620.930 109.01163
## 2110 15620.930 109.01163
## 2111 15620.930 109.01163
## 2112 15620.930 109.01163
## 2113 1794.767 4812.20930
## 2114 1794.767 4812.20930
## 2115 1794.767 4812.20930
## 2116 1794.767 4812.20930
## 2117 1794.767 4812.20930
## 2118 1794.767 4812.20930
## 2119 1794.767 4812.20930
## 2120 1794.767 4812.20930
## 2121 1794.767 4812.20930
## 2122 1794.767 4812.20930
## 2123 1794.767 4812.20930
## 2124 1794.767 4812.20930
## 2125 1794.767 4812.20930
## 2126 1794.767 4812.20930
## 2127 1794.767 4812.20930
## 2128 1794.767 4812.20930
## 2129 1794.767 4812.20930
## 2130 1794.767 4812.20930
## 2131 1794.767 4812.20930
## 2132 1794.767 4812.20930
## 2133 1794.767 4812.20930
## 2134 1794.767 4812.20930
## 2135 1794.767 4812.20930
## 2136 1794.767 4812.20930
## 2137 9212.791 11656.39535
## 2138 9212.791 11656.39535
## 2139 9212.791 11656.39535
## 2140 9212.791 11656.39535
## 2141 9212.791 11656.39535
## 2142 9212.791 11656.39535
## 2143 9212.791 11656.39535
## 2144 9212.791 11656.39535
## 2145 9212.791 11656.39535
## 2146 9212.791 11656.39535
## 2147 9212.791 11656.39535
## 2148 9212.791 11656.39535
## 2149 9212.791 11656.39535
## 2150 9212.791 11656.39535
## 2151 9212.791 11656.39535
## 2152 9212.791 11656.39535
## 2153 9212.791 11656.39535
## 2154 9212.791 11656.39535
## 2155 9212.791 11656.39535
## 2156 9212.791 11656.39535
## 2157 9212.791 11656.39535
## 2158 9212.791 11656.39535
## 2159 9212.791 11656.39535
## 2160 9212.791 11656.39535
## 2161 12723.837 4932.55814
## 2162 12723.837 4932.55814
## 2163 12723.837 4932.55814
## 2164 12723.837 4932.55814
## 2165 12723.837 4932.55814
## 2166 12723.837 4932.55814
## 2167 12723.837 4932.55814
## 2168 12723.837 4932.55814
## 2169 12723.837 4932.55814
## 2170 12723.837 4932.55814
## 2171 12723.837 4932.55814
## 2172 12723.837 4932.55814
## 2173 12723.837 4932.55814
## 2174 12723.837 4932.55814
## 2175 12723.837 4932.55814
## 2176 12723.837 4932.55814
## 2177 12723.837 4932.55814
## 2178 12723.837 4932.55814
## 2179 12723.837 4932.55814
## 2180 12723.837 4932.55814
## 2181 12723.837 4932.55814
## 2182 12723.837 4932.55814
## 2183 12723.837 4932.55814
## 2184 12723.837 4932.55814
## 2185 16817.442 3261.62791
## 2186 16817.442 3261.62791
## 2187 16817.442 3261.62791
## 2188 16817.442 3261.62791
## 2189 16817.442 3261.62791
## 2190 16817.442 3261.62791
## 2191 16817.442 3261.62791
## 2192 16817.442 3261.62791
## 2193 16817.442 3261.62791
## 2194 16817.442 3261.62791
## 2195 16817.442 3261.62791
## 2196 16817.442 3261.62791
## 2197 16817.442 3261.62791
## 2198 16817.442 3261.62791
## 2199 16817.442 3261.62791
## 2200 16817.442 3261.62791
## 2201 16817.442 3261.62791
## 2202 16817.442 3261.62791
## 2203 16817.442 3261.62791
## 2204 16817.442 3261.62791
## 2205 16817.442 3261.62791
## 2206 16817.442 3261.62791
## 2207 16817.442 3261.62791
## 2208 16817.442 3261.62791
## 2209 13630.814 0.00000
## 2210 13630.814 0.00000
## 2211 13630.814 0.00000
## 2212 13630.814 0.00000
## 2213 13630.814 0.00000
## 2214 13630.814 0.00000
## 2215 13630.814 0.00000
## 2216 13630.814 0.00000
## 2217 13630.814 0.00000
## 2218 13630.814 0.00000
## 2219 13630.814 0.00000
## 2220 13630.814 0.00000
## 2221 13630.814 0.00000
## 2222 13630.814 0.00000
## 2223 13630.814 0.00000
## 2224 13630.814 0.00000
## 2225 13630.814 0.00000
## 2226 13630.814 0.00000
## 2227 13630.814 0.00000
## 2228 13630.814 0.00000
## 2229 13630.814 0.00000
## 2230 13630.814 0.00000
## 2231 13630.814 0.00000
## 2232 13630.814 0.00000
## 2233 8110.465 931.39535
## 2234 8110.465 931.39535
## 2235 8110.465 931.39535
## 2236 8110.465 931.39535
## 2237 8110.465 931.39535
## 2238 8110.465 931.39535
## 2239 8110.465 931.39535
## 2240 8110.465 931.39535
## 2241 8110.465 931.39535
## 2242 8110.465 931.39535
## 2243 8110.465 931.39535
## 2244 8110.465 931.39535
## 2245 8110.465 931.39535
## 2246 8110.465 931.39535
## 2247 8110.465 931.39535
## 2248 8110.465 931.39535
## 2249 8110.465 931.39535
## 2250 8110.465 931.39535
## 2251 8110.465 931.39535
## 2252 8110.465 931.39535
## 2253 8110.465 931.39535
## 2254 8110.465 931.39535
## 2255 8110.465 931.39535
## 2256 8110.465 931.39535
## 2257 12243.314 0.00000
## 2258 12243.314 0.00000
## 2259 12243.314 0.00000
## 2260 12243.314 0.00000
## 2261 12243.314 0.00000
## 2262 12243.314 0.00000
## 2263 12243.314 0.00000
## 2264 12243.314 0.00000
## 2265 12243.314 0.00000
## 2266 12243.314 0.00000
## 2267 12243.314 0.00000
## 2268 12243.314 0.00000
## 2269 12243.314 0.00000
## 2270 12243.314 0.00000
## 2271 12243.314 0.00000
## 2272 12243.314 0.00000
## 2273 12243.314 0.00000
## 2274 12243.314 0.00000
## 2275 12243.314 0.00000
## 2276 12243.314 0.00000
## 2277 12243.314 0.00000
## 2278 12243.314 0.00000
## 2279 12243.314 0.00000
## 2280 12243.314 0.00000
## 2281 10636.919 109.01163
## 2282 10636.919 109.01163
## 2283 10636.919 109.01163
## 2284 10636.919 109.01163
## 2285 10636.919 109.01163
## 2286 10636.919 109.01163
## 2287 10636.919 109.01163
## 2288 10636.919 109.01163
## 2289 10636.919 109.01163
## 2290 10636.919 109.01163
## 2291 10636.919 109.01163
## 2292 10636.919 109.01163
## 2293 10636.919 109.01163
## 2294 10636.919 109.01163
## 2295 10636.919 109.01163
## 2296 10636.919 109.01163
## 2297 10636.919 109.01163
## 2298 10636.919 109.01163
## 2299 10636.919 109.01163
## 2300 10636.919 109.01163
## 2301 10636.919 109.01163
## 2302 10636.919 109.01163
## 2303 10636.919 109.01163
## 2304 10636.919 109.01163
## 2305 1794.767 4812.20930
## 2306 1794.767 4812.20930
## 2307 1794.767 4812.20930
## 2308 1794.767 4812.20930
## 2309 1794.767 4812.20930
## 2310 1794.767 4812.20930
## 2311 1794.767 4812.20930
## 2312 1794.767 4812.20930
## 2313 1794.767 4812.20930
## 2314 1794.767 4812.20930
## 2315 1794.767 4812.20930
## 2316 1794.767 4812.20930
## 2317 1794.767 4812.20930
## 2318 1794.767 4812.20930
## 2319 1794.767 4812.20930
## 2320 1794.767 4812.20930
## 2321 1794.767 4812.20930
## 2322 1794.767 4812.20930
## 2323 1794.767 4812.20930
## 2324 1794.767 4812.20930
## 2325 1794.767 4812.20930
## 2326 1794.767 4812.20930
## 2327 1794.767 4812.20930
## 2328 1794.767 4812.20930
## 2329 7861.047 16487.79070
## 2330 7861.047 16487.79070
## 2331 7861.047 16487.79070
## 2332 7861.047 16487.79070
## 2333 7861.047 16487.79070
## 2334 7861.047 16487.79070
## 2335 7861.047 16487.79070
## 2336 7861.047 16487.79070
## 2337 7861.047 16487.79070
## 2338 7861.047 16487.79070
## 2339 7861.047 16487.79070
## 2340 7861.047 16487.79070
## 2341 7861.047 16487.79070
## 2342 7861.047 16487.79070
## 2343 7861.047 16487.79070
## 2344 7861.047 16487.79070
## 2345 7861.047 16487.79070
## 2346 7861.047 16487.79070
## 2347 7861.047 16487.79070
## 2348 7861.047 16487.79070
## 2349 7861.047 16487.79070
## 2350 7861.047 16487.79070
## 2351 7861.047 16487.79070
## 2352 7861.047 16487.79070
## 2353 12837.209 5795.93023
## 2354 12837.209 5795.93023
## 2355 12837.209 5795.93023
## 2356 12837.209 5795.93023
## 2357 12837.209 5795.93023
## 2358 12837.209 5795.93023
## 2359 12837.209 5795.93023
## 2360 12837.209 5795.93023
## 2361 12837.209 5795.93023
## 2362 12837.209 5795.93023
## 2363 12837.209 5795.93023
## 2364 12837.209 5795.93023
## 2365 12837.209 5795.93023
## 2366 12837.209 5795.93023
## 2367 12837.209 5795.93023
## 2368 12837.209 5795.93023
## 2369 12837.209 5795.93023
## 2370 12837.209 5795.93023
## 2371 12837.209 5795.93023
## 2372 12837.209 5795.93023
## 2373 12837.209 5795.93023
## 2374 12837.209 5795.93023
## 2375 12837.209 5795.93023
## 2376 12837.209 5795.93023
## 2377 8715.698 3636.62791
## 2378 8715.698 3636.62791
## 2379 8715.698 3636.62791
## 2380 8715.698 3636.62791
## 2381 8715.698 3636.62791
## 2382 8715.698 3636.62791
## 2383 8715.698 3636.62791
## 2384 8715.698 3636.62791
## 2385 8715.698 3636.62791
## 2386 8715.698 3636.62791
## 2387 8715.698 3636.62791
## 2388 8715.698 3636.62791
## 2389 8715.698 3636.62791
## 2390 8715.698 3636.62791
## 2391 8715.698 3636.62791
## 2392 8715.698 3636.62791
## 2393 8715.698 3636.62791
## 2394 8715.698 3636.62791
## 2395 8715.698 3636.62791
## 2396 8715.698 3636.62791
## 2397 8715.698 3636.62791
## 2398 8715.698 3636.62791
## 2399 8715.698 3636.62791
## 2400 8715.698 3636.62791
## 2401 11354.651 0.00000
## 2402 11354.651 0.00000
## 2403 11354.651 0.00000
## 2404 11354.651 0.00000
## 2405 11354.651 0.00000
## 2406 11354.651 0.00000
## 2407 11354.651 0.00000
## 2408 11354.651 0.00000
## 2409 11354.651 0.00000
## 2410 11354.651 0.00000
## 2411 11354.651 0.00000
## 2412 11354.651 0.00000
## 2413 11354.651 0.00000
## 2414 11354.651 0.00000
## 2415 11354.651 0.00000
## 2416 11354.651 0.00000
## 2417 11354.651 0.00000
## 2418 11354.651 0.00000
## 2419 11354.651 0.00000
## 2420 11354.651 0.00000
## 2421 11354.651 0.00000
## 2422 11354.651 0.00000
## 2423 11354.651 0.00000
## 2424 11354.651 0.00000
## 2425 3584.302 94.18605
## 2426 3584.302 94.18605
## 2427 3584.302 94.18605
## 2428 3584.302 94.18605
## 2429 3584.302 94.18605
## 2430 3584.302 94.18605
## 2431 3584.302 94.18605
## 2432 3584.302 94.18605
## 2433 3584.302 94.18605
## 2434 3584.302 94.18605
## 2435 3584.302 94.18605
## 2436 3584.302 94.18605
## 2437 3584.302 94.18605
## 2438 3584.302 94.18605
## 2439 3584.302 94.18605
## 2440 3584.302 94.18605
## 2441 3584.302 94.18605
## 2442 3584.302 94.18605
## 2443 3584.302 94.18605
## 2444 3584.302 94.18605
## 2445 3584.302 94.18605
## 2446 3584.302 94.18605
## 2447 3584.302 94.18605
## 2448 3584.302 94.18605
## 2449 13638.663 327.03488
## 2450 13638.663 327.03488
## 2451 13638.663 327.03488
## 2452 13638.663 327.03488
## 2453 13638.663 327.03488
## 2454 13638.663 327.03488
## 2455 13638.663 327.03488
## 2456 13638.663 327.03488
## 2457 13638.663 327.03488
## 2458 13638.663 327.03488
## 2459 13638.663 327.03488
## 2460 13638.663 327.03488
## 2461 13638.663 327.03488
## 2462 13638.663 327.03488
## 2463 13638.663 327.03488
## 2464 13638.663 327.03488
## 2465 13638.663 327.03488
## 2466 13638.663 327.03488
## 2467 13638.663 327.03488
## 2468 13638.663 327.03488
## 2469 13638.663 327.03488
## 2470 13638.663 327.03488
## 2471 13638.663 327.03488
## 2472 13638.663 327.03488
## 2473 20155.814 109.01163
## 2474 20155.814 109.01163
## 2475 20155.814 109.01163
## 2476 20155.814 109.01163
## 2477 20155.814 109.01163
## 2478 20155.814 109.01163
## 2479 20155.814 109.01163
## 2480 20155.814 109.01163
## 2481 20155.814 109.01163
## 2482 20155.814 109.01163
## 2483 20155.814 109.01163
## 2484 20155.814 109.01163
## 2485 20155.814 109.01163
## 2486 20155.814 109.01163
## 2487 20155.814 109.01163
## 2488 20155.814 109.01163
## 2489 20155.814 109.01163
## 2490 20155.814 109.01163
## 2491 20155.814 109.01163
## 2492 20155.814 109.01163
## 2493 20155.814 109.01163
## 2494 20155.814 109.01163
## 2495 20155.814 109.01163
## 2496 20155.814 109.01163
## 2497 1794.767 4812.20930
## 2498 1794.767 4812.20930
## 2499 1794.767 4812.20930
## 2500 1794.767 4812.20930
## 2501 1794.767 4812.20930
## 2502 1794.767 4812.20930
## 2503 1794.767 4812.20930
## 2504 1794.767 4812.20930
## 2505 1794.767 4812.20930
## 2506 1794.767 4812.20930
## 2507 1794.767 4812.20930
## 2508 1794.767 4812.20930
## 2509 1794.767 4812.20930
## 2510 1794.767 4812.20930
## 2511 1794.767 4812.20930
## 2512 1794.767 4812.20930
## 2513 1794.767 4812.20930
## 2514 1794.767 4812.20930
## 2515 1794.767 4812.20930
## 2516 1794.767 4812.20930
## 2517 1794.767 4812.20930
## 2518 1794.767 4812.20930
## 2519 1794.767 4812.20930
## 2520 1794.767 4812.20930
## 2521 9744.767 10819.18605
## 2522 9744.767 10819.18605
## 2523 9744.767 10819.18605
## 2524 9744.767 10819.18605
## 2525 9744.767 10819.18605
## 2526 9744.767 10819.18605
## 2527 9744.767 10819.18605
## 2528 9744.767 10819.18605
## 2529 9744.767 10819.18605
## 2530 9744.767 10819.18605
## 2531 9744.767 10819.18605
## 2532 9744.767 10819.18605
## 2533 9744.767 10819.18605
## 2534 9744.767 10819.18605
## 2535 9744.767 10819.18605
## 2536 9744.767 10819.18605
## 2537 9744.767 10819.18605
## 2538 9744.767 10819.18605
## 2539 9744.767 10819.18605
## 2540 9744.767 10819.18605
## 2541 9744.767 10819.18605
## 2542 9744.767 10819.18605
## 2543 9744.767 10819.18605
## 2544 9744.767 10819.18605
## 2545 17223.837 1845.34884
## 2546 17223.837 1845.34884
## 2547 17223.837 1845.34884
## 2548 17223.837 1845.34884
## 2549 17223.837 1845.34884
## 2550 17223.837 1845.34884
## 2551 17223.837 1845.34884
## 2552 17223.837 1845.34884
## 2553 17223.837 1845.34884
## 2554 17223.837 1845.34884
## 2555 17223.837 1845.34884
## 2556 17223.837 1845.34884
## 2557 17223.837 1845.34884
## 2558 17223.837 1845.34884
## 2559 17223.837 1845.34884
## 2560 17223.837 1845.34884
## 2561 17223.837 1845.34884
## 2562 17223.837 1845.34884
## 2563 17223.837 1845.34884
## 2564 17223.837 1845.34884
## 2565 17223.837 1845.34884
## 2566 17223.837 1845.34884
## 2567 17223.837 1845.34884
## 2568 17223.837 1845.34884
## 2569 12169.186 1090.11628
## 2570 12169.186 1090.11628
## 2571 12169.186 1090.11628
## 2572 12169.186 1090.11628
## 2573 12169.186 1090.11628
## 2574 12169.186 1090.11628
## 2575 12169.186 1090.11628
## 2576 12169.186 1090.11628
## 2577 12169.186 1090.11628
## 2578 12169.186 1090.11628
## 2579 12169.186 1090.11628
## 2580 12169.186 1090.11628
## 2581 12169.186 1090.11628
## 2582 12169.186 1090.11628
## 2583 12169.186 1090.11628
## 2584 12169.186 1090.11628
## 2585 12169.186 1090.11628
## 2586 12169.186 1090.11628
## 2587 12169.186 1090.11628
## 2588 12169.186 1090.11628
## 2589 12169.186 1090.11628
## 2590 12169.186 1090.11628
## 2591 12169.186 1090.11628
## 2592 12169.186 1090.11628
## 2593 11284.884 0.00000
## 2594 11284.884 0.00000
## 2595 11284.884 0.00000
## 2596 11284.884 0.00000
## 2597 11284.884 0.00000
## 2598 11284.884 0.00000
## 2599 11284.884 0.00000
## 2600 11284.884 0.00000
## 2601 11284.884 0.00000
## 2602 11284.884 0.00000
## 2603 11284.884 0.00000
## 2604 11284.884 0.00000
## 2605 11284.884 0.00000
## 2606 11284.884 0.00000
## 2607 11284.884 0.00000
## 2608 11284.884 0.00000
## 2609 11284.884 0.00000
## 2610 11284.884 0.00000
## 2611 11284.884 0.00000
## 2612 11284.884 0.00000
## 2613 11284.884 0.00000
## 2614 11284.884 0.00000
## 2615 11284.884 0.00000
## 2616 11284.884 0.00000
## 2617 5206.395 94.18605
## 2618 5206.395 94.18605
## 2619 5206.395 94.18605
## 2620 5206.395 94.18605
## 2621 5206.395 94.18605
## 2622 5206.395 94.18605
## 2623 5206.395 94.18605
## 2624 5206.395 94.18605
## 2625 5206.395 94.18605
## 2626 5206.395 94.18605
## 2627 5206.395 94.18605
## 2628 5206.395 94.18605
## 2629 5206.395 94.18605
## 2630 5206.395 94.18605
## 2631 5206.395 94.18605
## 2632 5206.395 94.18605
## 2633 5206.395 94.18605
## 2634 5206.395 94.18605
## 2635 5206.395 94.18605
## 2636 5206.395 94.18605
## 2637 5206.395 94.18605
## 2638 5206.395 94.18605
## 2639 5206.395 94.18605
## 2640 5206.395 94.18605
## 2641 4141.570 0.00000
## 2642 4141.570 0.00000
## 2643 4141.570 0.00000
## 2644 4141.570 0.00000
## 2645 4141.570 0.00000
## 2646 4141.570 0.00000
## 2647 4141.570 0.00000
## 2648 4141.570 0.00000
## 2649 4141.570 0.00000
## 2650 4141.570 0.00000
## 2651 4141.570 0.00000
## 2652 4141.570 0.00000
## 2653 4141.570 0.00000
## 2654 4141.570 0.00000
## 2655 4141.570 0.00000
## 2656 4141.570 0.00000
## 2657 4141.570 0.00000
## 2658 4141.570 0.00000
## 2659 4141.570 0.00000
## 2660 4141.570 0.00000
## 2661 4141.570 0.00000
## 2662 4141.570 0.00000
## 2663 4141.570 0.00000
## 2664 4141.570 0.00000
## 2665 2308.430 109.01163
## 2666 2308.430 109.01163
## 2667 2308.430 109.01163
## 2668 2308.430 109.01163
## 2669 2308.430 109.01163
## 2670 2308.430 109.01163
## 2671 2308.430 109.01163
## 2672 2308.430 109.01163
## 2673 2308.430 109.01163
## 2674 2308.430 109.01163
## 2675 2308.430 109.01163
## 2676 2308.430 109.01163
## 2677 2308.430 109.01163
## 2678 2308.430 109.01163
## 2679 2308.430 109.01163
## 2680 2308.430 109.01163
## 2681 2308.430 109.01163
## 2682 2308.430 109.01163
## 2683 2308.430 109.01163
## 2684 2308.430 109.01163
## 2685 2308.430 109.01163
## 2686 2308.430 109.01163
## 2687 2308.430 109.01163
## 2688 2308.430 109.01163
## 2689 1794.767 4812.20930
## 2690 1794.767 4812.20930
## 2691 1794.767 4812.20930
## 2692 1794.767 4812.20930
## 2693 1794.767 4812.20930
## 2694 1794.767 4812.20930
## 2695 1794.767 4812.20930
## 2696 1794.767 4812.20930
## 2697 1794.767 4812.20930
## 2698 1794.767 4812.20930
## 2699 1794.767 4812.20930
## 2700 1794.767 4812.20930
## 2701 1794.767 4812.20930
## 2702 1794.767 4812.20930
## 2703 1794.767 4812.20930
## 2704 1794.767 4812.20930
## 2705 1794.767 4812.20930
## 2706 1794.767 4812.20930
## 2707 1794.767 4812.20930
## 2708 1794.767 4812.20930
## 2709 1794.767 4812.20930
## 2710 1794.767 4812.20930
## 2711 1794.767 4812.20930
## 2712 1794.767 4812.20930
## 2713 8070.349 5839.53488
## 2714 8070.349 5839.53488
## 2715 8070.349 5839.53488
## 2716 8070.349 5839.53488
## 2717 8070.349 5839.53488
## 2718 8070.349 5839.53488
## 2719 8070.349 5839.53488
## 2720 8070.349 5839.53488
## 2721 8070.349 5839.53488
## 2722 8070.349 5839.53488
## 2723 8070.349 5839.53488
## 2724 8070.349 5839.53488
## 2725 8070.349 5839.53488
## 2726 8070.349 5839.53488
## 2727 8070.349 5839.53488
## 2728 8070.349 5839.53488
## 2729 8070.349 5839.53488
## 2730 8070.349 5839.53488
## 2731 8070.349 5839.53488
## 2732 8070.349 5839.53488
## 2733 8070.349 5839.53488
## 2734 8070.349 5839.53488
## 2735 8070.349 5839.53488
## 2736 8070.349 5839.53488
## 2737 10360.465 3973.25581
## 2738 10360.465 3973.25581
## 2739 10360.465 3973.25581
## 2740 10360.465 3973.25581
## 2741 10360.465 3973.25581
## 2742 10360.465 3973.25581
## 2743 10360.465 3973.25581
## 2744 10360.465 3973.25581
## 2745 10360.465 3973.25581
## 2746 10360.465 3973.25581
## 2747 10360.465 3973.25581
## 2748 10360.465 3973.25581
## 2749 10360.465 3973.25581
## 2750 10360.465 3973.25581
## 2751 10360.465 3973.25581
## 2752 10360.465 3973.25581
## 2753 10360.465 3973.25581
## 2754 10360.465 3973.25581
## 2755 10360.465 3973.25581
## 2756 10360.465 3973.25581
## 2757 10360.465 3973.25581
## 2758 10360.465 3973.25581
## 2759 10360.465 3973.25581
## 2760 10360.465 3973.25581
## 2761 10625.581 1779.06977
## 2762 10625.581 1779.06977
## 2763 10625.581 1779.06977
## 2764 10625.581 1779.06977
## 2765 10625.581 1779.06977
## 2766 10625.581 1779.06977
## 2767 10625.581 1779.06977
## 2768 10625.581 1779.06977
## 2769 10625.581 1779.06977
## 2770 10625.581 1779.06977
## 2771 10625.581 1779.06977
## 2772 10625.581 1779.06977
## 2773 10625.581 1779.06977
## 2774 10625.581 1779.06977
## 2775 10625.581 1779.06977
## 2776 10625.581 1779.06977
## 2777 10625.581 1779.06977
## 2778 10625.581 1779.06977
## 2779 10625.581 1779.06977
## 2780 10625.581 1779.06977
## 2781 10625.581 1779.06977
## 2782 10625.581 1779.06977
## 2783 10625.581 1779.06977
## 2784 10625.581 1779.06977
## 2785 13665.698 0.00000
## 2786 13665.698 0.00000
## 2787 13665.698 0.00000
## 2788 13665.698 0.00000
## 2789 13665.698 0.00000
## 2790 13665.698 0.00000
## 2791 13665.698 0.00000
## 2792 13665.698 0.00000
## 2793 13665.698 0.00000
## 2794 13665.698 0.00000
## 2795 13665.698 0.00000
## 2796 13665.698 0.00000
## 2797 13665.698 0.00000
## 2798 13665.698 0.00000
## 2799 13665.698 0.00000
## 2800 13665.698 0.00000
## 2801 13665.698 0.00000
## 2802 13665.698 0.00000
## 2803 13665.698 0.00000
## 2804 13665.698 0.00000
## 2805 13665.698 0.00000
## 2806 13665.698 0.00000
## 2807 13665.698 0.00000
## 2808 13665.698 0.00000
## 2809 8311.047 94.18605
## 2810 8311.047 94.18605
## 2811 8311.047 94.18605
## 2812 8311.047 94.18605
## 2813 8311.047 94.18605
## 2814 8311.047 94.18605
## 2815 8311.047 94.18605
## 2816 8311.047 94.18605
## 2817 8311.047 94.18605
## 2818 8311.047 94.18605
## 2819 8311.047 94.18605
## 2820 8311.047 94.18605
## 2821 8311.047 94.18605
## 2822 8311.047 94.18605
## 2823 8311.047 94.18605
## 2824 8311.047 94.18605
## 2825 8311.047 94.18605
## 2826 8311.047 94.18605
## 2827 8311.047 94.18605
## 2828 8311.047 94.18605
## 2829 8311.047 94.18605
## 2830 8311.047 94.18605
## 2831 8311.047 94.18605
## 2832 8311.047 94.18605
## 2833 9552.907 0.00000
## 2834 9552.907 0.00000
## 2835 9552.907 0.00000
## 2836 9552.907 0.00000
## 2837 9552.907 0.00000
## 2838 9552.907 0.00000
## 2839 9552.907 0.00000
## 2840 9552.907 0.00000
## 2841 9552.907 0.00000
## 2842 9552.907 0.00000
## 2843 9552.907 0.00000
## 2844 9552.907 0.00000
## 2845 9552.907 0.00000
## 2846 9552.907 0.00000
## 2847 9552.907 0.00000
## 2848 9552.907 0.00000
## 2849 9552.907 0.00000
## 2850 9552.907 0.00000
## 2851 9552.907 0.00000
## 2852 9552.907 0.00000
## 2853 9552.907 0.00000
## 2854 9552.907 0.00000
## 2855 9552.907 0.00000
## 2856 9552.907 0.00000
## 2857 16266.279 109.01163
## 2858 16266.279 109.01163
## 2859 16266.279 109.01163
## 2860 16266.279 109.01163
## 2861 16266.279 109.01163
## 2862 16266.279 109.01163
## 2863 16266.279 109.01163
## 2864 16266.279 109.01163
## 2865 16266.279 109.01163
## 2866 16266.279 109.01163
## 2867 16266.279 109.01163
## 2868 16266.279 109.01163
## 2869 16266.279 109.01163
## 2870 16266.279 109.01163
## 2871 16266.279 109.01163
## 2872 16266.279 109.01163
## 2873 16266.279 109.01163
## 2874 16266.279 109.01163
## 2875 16266.279 109.01163
## 2876 16266.279 109.01163
## 2877 16266.279 109.01163
## 2878 16266.279 109.01163
## 2879 16266.279 109.01163
## 2880 16266.279 109.01163
## 2881 1794.767 4812.20930
## 2882 1794.767 4812.20930
## 2883 1794.767 4812.20930
## 2884 1794.767 4812.20930
## 2885 1794.767 4812.20930
## 2886 1794.767 4812.20930
## 2887 1794.767 4812.20930
## 2888 1794.767 4812.20930
## 2889 1794.767 4812.20930
## 2890 1794.767 4812.20930
## 2891 1794.767 4812.20930
## 2892 1794.767 4812.20930
## 2893 1794.767 4812.20930
## 2894 1794.767 4812.20930
## 2895 1794.767 4812.20930
## 2896 1794.767 4812.20930
## 2897 1794.767 4812.20930
## 2898 1794.767 4812.20930
## 2899 1794.767 4812.20930
## 2900 1794.767 4812.20930
## 2901 1794.767 4812.20930
## 2902 1794.767 4812.20930
## 2903 1794.767 4812.20930
## 2904 1794.767 4812.20930
## 2905 7111.047 21390.69767
## 2906 7111.047 21390.69767
## 2907 7111.047 21390.69767
## 2908 7111.047 21390.69767
## 2909 7111.047 21390.69767
## 2910 7111.047 21390.69767
## 2911 7111.047 21390.69767
## 2912 7111.047 21390.69767
## 2913 7111.047 21390.69767
## 2914 7111.047 21390.69767
## 2915 7111.047 21390.69767
## 2916 7111.047 21390.69767
## 2917 7111.047 21390.69767
## 2918 7111.047 21390.69767
## 2919 7111.047 21390.69767
## 2920 7111.047 21390.69767
## 2921 7111.047 21390.69767
## 2922 7111.047 21390.69767
## 2923 7111.047 21390.69767
## 2924 7111.047 21390.69767
## 2925 7111.047 21390.69767
## 2926 7111.047 21390.69767
## 2927 7111.047 21390.69767
## 2928 7111.047 21390.69767
## 2929 11391.279 16950.00000
## 2930 11391.279 16950.00000
## 2931 11391.279 16950.00000
## 2932 11391.279 16950.00000
## 2933 11391.279 16950.00000
## 2934 11391.279 16950.00000
## 2935 11391.279 16950.00000
## 2936 11391.279 16950.00000
## 2937 11391.279 16950.00000
## 2938 11391.279 16950.00000
## 2939 11391.279 16950.00000
## 2940 11391.279 16950.00000
## 2941 11391.279 16950.00000
## 2942 11391.279 16950.00000
## 2943 11391.279 16950.00000
## 2944 11391.279 16950.00000
## 2945 11391.279 16950.00000
## 2946 11391.279 16950.00000
## 2947 11391.279 16950.00000
## 2948 11391.279 16950.00000
## 2949 11391.279 16950.00000
## 2950 11391.279 16950.00000
## 2951 11391.279 16950.00000
## 2952 11391.279 16950.00000
## 2953 7470.349 7334.30233
## 2954 7470.349 7334.30233
## 2955 7470.349 7334.30233
## 2956 7470.349 7334.30233
## 2957 7470.349 7334.30233
## 2958 7470.349 7334.30233
## 2959 7470.349 7334.30233
## 2960 7470.349 7334.30233
## 2961 7470.349 7334.30233
## 2962 7470.349 7334.30233
## 2963 7470.349 7334.30233
## 2964 7470.349 7334.30233
## 2965 7470.349 7334.30233
## 2966 7470.349 7334.30233
## 2967 7470.349 7334.30233
## 2968 7470.349 7334.30233
## 2969 7470.349 7334.30233
## 2970 7470.349 7334.30233
## 2971 7470.349 7334.30233
## 2972 7470.349 7334.30233
## 2973 7470.349 7334.30233
## 2974 7470.349 7334.30233
## 2975 7470.349 7334.30233
## 2976 7470.349 7334.30233
## 2977 9181.395 4083.13953
## 2978 9181.395 4083.13953
## 2979 9181.395 4083.13953
## 2980 9181.395 4083.13953
## 2981 9181.395 4083.13953
## 2982 9181.395 4083.13953
## 2983 9181.395 4083.13953
## 2984 9181.395 4083.13953
## 2985 9181.395 4083.13953
## 2986 9181.395 4083.13953
## 2987 9181.395 4083.13953
## 2988 9181.395 4083.13953
## 2989 9181.395 4083.13953
## 2990 9181.395 4083.13953
## 2991 9181.395 4083.13953
## 2992 9181.395 4083.13953
## 2993 9181.395 4083.13953
## 2994 9181.395 4083.13953
## 2995 9181.395 4083.13953
## 2996 9181.395 4083.13953
## 2997 9181.395 4083.13953
## 2998 9181.395 4083.13953
## 2999 9181.395 4083.13953
## 3000 9181.395 4083.13953
## 3001 9556.395 0.00000
## 3002 9556.395 0.00000
## 3003 9556.395 0.00000
## 3004 9556.395 0.00000
## 3005 9556.395 0.00000
## 3006 9556.395 0.00000
## 3007 9556.395 0.00000
## 3008 9556.395 0.00000
## 3009 9556.395 0.00000
## 3010 9556.395 0.00000
## 3011 9556.395 0.00000
## 3012 9556.395 0.00000
## 3013 9556.395 0.00000
## 3014 9556.395 0.00000
## 3015 9556.395 0.00000
## 3016 9556.395 0.00000
## 3017 9556.395 0.00000
## 3018 9556.395 0.00000
## 3019 9556.395 0.00000
## 3020 9556.395 0.00000
## 3021 9556.395 0.00000
## 3022 9556.395 0.00000
## 3023 9556.395 0.00000
## 3024 9556.395 0.00000
## 3025 15595.640 418.60465
## 3026 15595.640 418.60465
## 3027 15595.640 418.60465
## 3028 15595.640 418.60465
## 3029 15595.640 418.60465
## 3030 15595.640 418.60465
## 3031 15595.640 418.60465
## 3032 15595.640 418.60465
## 3033 15595.640 418.60465
## 3034 15595.640 418.60465
## 3035 15595.640 418.60465
## 3036 15595.640 418.60465
## 3037 15595.640 418.60465
## 3038 15595.640 418.60465
## 3039 15595.640 418.60465
## 3040 15595.640 418.60465
## 3041 15595.640 418.60465
## 3042 15595.640 418.60465
## 3043 15595.640 418.60465
## 3044 15595.640 418.60465
## 3045 15595.640 418.60465
## 3046 15595.640 418.60465
## 3047 15595.640 418.60465
## 3048 15595.640 418.60465
## 3049 15213.663 0.00000
## 3050 15213.663 0.00000
## 3051 15213.663 0.00000
## 3052 15213.663 0.00000
## 3053 15213.663 0.00000
## 3054 15213.663 0.00000
## 3055 15213.663 0.00000
## 3056 15213.663 0.00000
## 3057 15213.663 0.00000
## 3058 15213.663 0.00000
## 3059 15213.663 0.00000
## 3060 15213.663 0.00000
## 3061 15213.663 0.00000
## 3062 15213.663 0.00000
## 3063 15213.663 0.00000
## 3064 15213.663 0.00000
## 3065 15213.663 0.00000
## 3066 15213.663 0.00000
## 3067 15213.663 0.00000
## 3068 15213.663 0.00000
## 3069 15213.663 0.00000
## 3070 15213.663 0.00000
## 3071 15213.663 0.00000
## 3072 15213.663 0.00000
## 3073 1794.767 4812.20930
## 3074 1794.767 4812.20930
## 3075 1794.767 4812.20930
## 3076 1794.767 4812.20930
## 3077 1794.767 4812.20930
## 3078 1794.767 4812.20930
## 3079 1794.767 4812.20930
## 3080 1794.767 4812.20930
## 3081 1794.767 4812.20930
## 3082 1794.767 4812.20930
## 3083 1794.767 4812.20930
## 3084 1794.767 4812.20930
## 3085 1794.767 4812.20930
## 3086 1794.767 4812.20930
## 3087 1794.767 4812.20930
## 3088 1794.767 4812.20930
## 3089 1794.767 4812.20930
## 3090 1794.767 4812.20930
## 3091 1794.767 4812.20930
## 3092 1794.767 4812.20930
## 3093 1794.767 4812.20930
## 3094 1794.767 4812.20930
## 3095 1794.767 4812.20930
## 3096 1794.767 4812.20930
## 3097 8750.581 13489.53488
## 3098 8750.581 13489.53488
## 3099 8750.581 13489.53488
## 3100 8750.581 13489.53488
## 3101 8750.581 13489.53488
## 3102 8750.581 13489.53488
## 3103 8750.581 13489.53488
## 3104 8750.581 13489.53488
## 3105 8750.581 13489.53488
## 3106 8750.581 13489.53488
## 3107 8750.581 13489.53488
## 3108 8750.581 13489.53488
## 3109 8750.581 13489.53488
## 3110 8750.581 13489.53488
## 3111 8750.581 13489.53488
## 3112 8750.581 13489.53488
## 3113 8750.581 13489.53488
## 3114 8750.581 13489.53488
## 3115 8750.581 13489.53488
## 3116 8750.581 13489.53488
## 3117 8750.581 13489.53488
## 3118 8750.581 13489.53488
## 3119 8750.581 13489.53488
## 3120 8750.581 13489.53488
## 3121 12280.814 5752.32558
## 3122 12280.814 5752.32558
## 3123 12280.814 5752.32558
## 3124 12280.814 5752.32558
## 3125 12280.814 5752.32558
## 3126 12280.814 5752.32558
## 3127 12280.814 5752.32558
## 3128 12280.814 5752.32558
## 3129 12280.814 5752.32558
## 3130 12280.814 5752.32558
## 3131 12280.814 5752.32558
## 3132 12280.814 5752.32558
## 3133 12280.814 5752.32558
## 3134 12280.814 5752.32558
## 3135 12280.814 5752.32558
## 3136 12280.814 5752.32558
## 3137 12280.814 5752.32558
## 3138 12280.814 5752.32558
## 3139 12280.814 5752.32558
## 3140 12280.814 5752.32558
## 3141 12280.814 5752.32558
## 3142 12280.814 5752.32558
## 3143 12280.814 5752.32558
## 3144 12280.814 5752.32558
## 3145 15790.116 4046.51163
## 3146 15790.116 4046.51163
## 3147 15790.116 4046.51163
## 3148 15790.116 4046.51163
## 3149 15790.116 4046.51163
## 3150 15790.116 4046.51163
## 3151 15790.116 4046.51163
## 3152 15790.116 4046.51163
## 3153 15790.116 4046.51163
## 3154 15790.116 4046.51163
## 3155 15790.116 4046.51163
## 3156 15790.116 4046.51163
## 3157 15790.116 4046.51163
## 3158 15790.116 4046.51163
## 3159 15790.116 4046.51163
## 3160 15790.116 4046.51163
## 3161 15790.116 4046.51163
## 3162 15790.116 4046.51163
## 3163 15790.116 4046.51163
## 3164 15790.116 4046.51163
## 3165 15790.116 4046.51163
## 3166 15790.116 4046.51163
## 3167 15790.116 4046.51163
## 3168 15790.116 4046.51163
## 3169 12861.628 568.60465
## 3170 12861.628 568.60465
## 3171 12861.628 568.60465
## 3172 12861.628 568.60465
## 3173 12861.628 568.60465
## 3174 12861.628 568.60465
## 3175 12861.628 568.60465
## 3176 12861.628 568.60465
## 3177 12861.628 568.60465
## 3178 12861.628 568.60465
## 3179 12861.628 568.60465
## 3180 12861.628 568.60465
## 3181 12861.628 568.60465
## 3182 12861.628 568.60465
## 3183 12861.628 568.60465
## 3184 12861.628 568.60465
## 3185 12861.628 568.60465
## 3186 12861.628 568.60465
## 3187 12861.628 568.60465
## 3188 12861.628 568.60465
## 3189 12861.628 568.60465
## 3190 12861.628 568.60465
## 3191 12861.628 568.60465
## 3192 12861.628 568.60465
## 3193 7986.628 837.20930
## 3194 7986.628 837.20930
## 3195 7986.628 837.20930
## 3196 7986.628 837.20930
## 3197 7986.628 837.20930
## 3198 7986.628 837.20930
## 3199 7986.628 837.20930
## 3200 7986.628 837.20930
## 3201 7986.628 837.20930
## 3202 7986.628 837.20930
## 3203 7986.628 837.20930
## 3204 7986.628 837.20930
## 3205 7986.628 837.20930
## 3206 7986.628 837.20930
## 3207 7986.628 837.20930
## 3208 7986.628 837.20930
## 3209 7986.628 837.20930
## 3210 7986.628 837.20930
## 3211 7986.628 837.20930
## 3212 7986.628 837.20930
## 3213 7986.628 837.20930
## 3214 7986.628 837.20930
## 3215 7986.628 837.20930
## 3216 7986.628 837.20930
## 3217 12342.733 0.00000
## 3218 12342.733 0.00000
## 3219 12342.733 0.00000
## 3220 12342.733 0.00000
## 3221 12342.733 0.00000
## 3222 12342.733 0.00000
## 3223 12342.733 0.00000
## 3224 12342.733 0.00000
## 3225 12342.733 0.00000
## total_metaecosystem_Eug_indiv total_metaecosystem_Eup_indiv
## 1 7834.88372 3155.2326
## 2 7834.88372 3155.2326
## 3 7834.88372 3155.2326
## 4 7834.88372 3155.2326
## 5 7834.88372 3155.2326
## 6 7834.88372 3155.2326
## 7 7834.88372 3155.2326
## 8 7834.88372 3155.2326
## 9 7834.88372 3155.2326
## 10 7834.88372 3155.2326
## 11 7834.88372 3155.2326
## 12 7834.88372 3155.2326
## 13 7834.88372 3155.2326
## 14 7834.88372 3155.2326
## 15 7834.88372 3155.2326
## 16 7834.88372 3155.2326
## 17 7834.88372 3155.2326
## 18 7834.88372 3155.2326
## 19 7834.88372 3155.2326
## 20 7834.88372 3155.2326
## 21 7834.88372 3155.2326
## 22 7834.88372 3155.2326
## 23 7834.88372 3155.2326
## 24 7834.88372 3155.2326
## 25 3057.55814 4484.3023
## 26 3057.55814 4484.3023
## 27 3057.55814 4484.3023
## 28 3057.55814 4484.3023
## 29 3057.55814 4484.3023
## 30 3057.55814 4484.3023
## 31 3057.55814 4484.3023
## 32 3057.55814 4484.3023
## 33 3057.55814 4484.3023
## 34 3057.55814 4484.3023
## 35 3057.55814 4484.3023
## 36 3057.55814 4484.3023
## 37 3057.55814 4484.3023
## 38 3057.55814 4484.3023
## 39 3057.55814 4484.3023
## 40 3057.55814 4484.3023
## 41 3057.55814 4484.3023
## 42 3057.55814 4484.3023
## 43 3057.55814 4484.3023
## 44 3057.55814 4484.3023
## 45 3057.55814 4484.3023
## 46 3057.55814 4484.3023
## 47 3057.55814 4484.3023
## 48 3057.55814 4484.3023
## 49 218.02326 1318.6047
## 50 218.02326 1318.6047
## 51 218.02326 1318.6047
## 52 218.02326 1318.6047
## 53 218.02326 1318.6047
## 54 218.02326 1318.6047
## 55 218.02326 1318.6047
## 56 218.02326 1318.6047
## 57 218.02326 1318.6047
## 58 218.02326 1318.6047
## 59 218.02326 1318.6047
## 60 218.02326 1318.6047
## 61 218.02326 1318.6047
## 62 218.02326 1318.6047
## 63 218.02326 1318.6047
## 64 218.02326 1318.6047
## 65 218.02326 1318.6047
## 66 218.02326 1318.6047
## 67 218.02326 1318.6047
## 68 218.02326 1318.6047
## 69 218.02326 1318.6047
## 70 218.02326 1318.6047
## 71 218.02326 1318.6047
## 72 218.02326 1318.6047
## 73 0.00000 5084.3023
## 74 0.00000 5084.3023
## 75 0.00000 5084.3023
## 76 0.00000 5084.3023
## 77 0.00000 5084.3023
## 78 0.00000 5084.3023
## 79 0.00000 5084.3023
## 80 0.00000 5084.3023
## 81 0.00000 5084.3023
## 82 0.00000 5084.3023
## 83 0.00000 5084.3023
## 84 0.00000 5084.3023
## 85 0.00000 5084.3023
## 86 0.00000 5084.3023
## 87 0.00000 5084.3023
## 88 0.00000 5084.3023
## 89 0.00000 5084.3023
## 90 0.00000 5084.3023
## 91 0.00000 5084.3023
## 92 0.00000 5084.3023
## 93 0.00000 5084.3023
## 94 0.00000 5084.3023
## 95 0.00000 5084.3023
## 96 0.00000 5084.3023
## 97 0.00000 5241.2791
## 98 0.00000 5241.2791
## 99 0.00000 5241.2791
## 100 0.00000 5241.2791
## 101 0.00000 5241.2791
## 102 0.00000 5241.2791
## 103 0.00000 5241.2791
## 104 0.00000 5241.2791
## 105 0.00000 5241.2791
## 106 0.00000 5241.2791
## 107 0.00000 5241.2791
## 108 0.00000 5241.2791
## 109 0.00000 5241.2791
## 110 0.00000 5241.2791
## 111 0.00000 5241.2791
## 112 0.00000 5241.2791
## 113 0.00000 5241.2791
## 114 0.00000 5241.2791
## 115 0.00000 5241.2791
## 116 0.00000 5241.2791
## 117 0.00000 5241.2791
## 118 0.00000 5241.2791
## 119 0.00000 5241.2791
## 120 0.00000 5241.2791
## 121 0.00000 2956.3953
## 122 0.00000 2956.3953
## 123 0.00000 2956.3953
## 124 0.00000 2956.3953
## 125 0.00000 2956.3953
## 126 0.00000 2956.3953
## 127 0.00000 2956.3953
## 128 0.00000 2956.3953
## 129 0.00000 2956.3953
## 130 0.00000 2956.3953
## 131 0.00000 2956.3953
## 132 0.00000 2956.3953
## 133 0.00000 2956.3953
## 134 0.00000 2956.3953
## 135 0.00000 2956.3953
## 136 0.00000 2956.3953
## 137 0.00000 2956.3953
## 138 0.00000 2956.3953
## 139 0.00000 2956.3953
## 140 0.00000 2956.3953
## 141 0.00000 2956.3953
## 142 0.00000 2956.3953
## 143 0.00000 2956.3953
## 144 0.00000 2956.3953
## 145 0.00000 662.7907
## 146 0.00000 662.7907
## 147 0.00000 662.7907
## 148 0.00000 662.7907
## 149 0.00000 662.7907
## 150 0.00000 662.7907
## 151 0.00000 662.7907
## 152 0.00000 662.7907
## 153 0.00000 662.7907
## 154 0.00000 662.7907
## 155 0.00000 662.7907
## 156 0.00000 662.7907
## 157 0.00000 662.7907
## 158 0.00000 662.7907
## 159 0.00000 662.7907
## 160 0.00000 662.7907
## 161 0.00000 662.7907
## 162 0.00000 662.7907
## 163 0.00000 662.7907
## 164 0.00000 662.7907
## 165 0.00000 662.7907
## 166 0.00000 662.7907
## 167 0.00000 662.7907
## 168 0.00000 662.7907
## 169 1090.11628 2428.7791
## 170 1090.11628 2428.7791
## 171 1090.11628 2428.7791
## 172 1090.11628 2428.7791
## 173 1090.11628 2428.7791
## 174 1090.11628 2428.7791
## 175 1090.11628 2428.7791
## 176 1090.11628 2428.7791
## 177 1090.11628 2428.7791
## 178 1090.11628 2428.7791
## 179 1090.11628 2428.7791
## 180 1090.11628 2428.7791
## 181 1090.11628 2428.7791
## 182 1090.11628 2428.7791
## 183 1090.11628 2428.7791
## 184 1090.11628 2428.7791
## 185 1090.11628 2428.7791
## 186 1090.11628 2428.7791
## 187 1090.11628 2428.7791
## 188 1090.11628 2428.7791
## 189 1090.11628 2428.7791
## 190 1090.11628 2428.7791
## 191 1090.11628 2428.7791
## 192 1090.11628 2428.7791
## 193 7834.88372 3155.2326
## 194 7834.88372 3155.2326
## 195 7834.88372 3155.2326
## 196 7834.88372 3155.2326
## 197 7834.88372 3155.2326
## 198 7834.88372 3155.2326
## 199 7834.88372 3155.2326
## 200 7834.88372 3155.2326
## 201 7834.88372 3155.2326
## 202 7834.88372 3155.2326
## 203 7834.88372 3155.2326
## 204 7834.88372 3155.2326
## 205 7834.88372 3155.2326
## 206 7834.88372 3155.2326
## 207 7834.88372 3155.2326
## 208 7834.88372 3155.2326
## 209 7834.88372 3155.2326
## 210 7834.88372 3155.2326
## 211 7834.88372 3155.2326
## 212 7834.88372 3155.2326
## 213 7834.88372 3155.2326
## 214 7834.88372 3155.2326
## 215 7834.88372 3155.2326
## 216 7834.88372 3155.2326
## 217 1941.27907 8312.7907
## 218 1941.27907 8312.7907
## 219 1941.27907 8312.7907
## 220 1941.27907 8312.7907
## 221 1941.27907 8312.7907
## 222 1941.27907 8312.7907
## 223 1941.27907 8312.7907
## 224 1941.27907 8312.7907
## 225 1941.27907 8312.7907
## 226 1941.27907 8312.7907
## 227 1941.27907 8312.7907
## 228 1941.27907 8312.7907
## 229 1941.27907 8312.7907
## 230 1941.27907 8312.7907
## 231 1941.27907 8312.7907
## 232 1941.27907 8312.7907
## 233 1941.27907 8312.7907
## 234 1941.27907 8312.7907
## 235 1941.27907 8312.7907
## 236 1941.27907 8312.7907
## 237 1941.27907 8312.7907
## 238 1941.27907 8312.7907
## 239 1941.27907 8312.7907
## 240 1941.27907 8312.7907
## 241 218.02326 3071.5116
## 242 218.02326 3071.5116
## 243 218.02326 3071.5116
## 244 218.02326 3071.5116
## 245 218.02326 3071.5116
## 246 218.02326 3071.5116
## 247 218.02326 3071.5116
## 248 218.02326 3071.5116
## 249 218.02326 3071.5116
## 250 218.02326 3071.5116
## 251 218.02326 3071.5116
## 252 218.02326 3071.5116
## 253 218.02326 3071.5116
## 254 218.02326 3071.5116
## 255 218.02326 3071.5116
## 256 218.02326 3071.5116
## 257 218.02326 3071.5116
## 258 218.02326 3071.5116
## 259 218.02326 3071.5116
## 260 218.02326 3071.5116
## 261 218.02326 3071.5116
## 262 218.02326 3071.5116
## 263 218.02326 3071.5116
## 264 218.02326 3071.5116
## 265 1438.95349 4988.3721
## 266 1438.95349 4988.3721
## 267 1438.95349 4988.3721
## 268 1438.95349 4988.3721
## 269 1438.95349 4988.3721
## 270 1438.95349 4988.3721
## 271 1438.95349 4988.3721
## 272 1438.95349 4988.3721
## 273 1438.95349 4988.3721
## 274 1438.95349 4988.3721
## 275 1438.95349 4988.3721
## 276 1438.95349 4988.3721
## 277 1438.95349 4988.3721
## 278 1438.95349 4988.3721
## 279 1438.95349 4988.3721
## 280 1438.95349 4988.3721
## 281 1438.95349 4988.3721
## 282 1438.95349 4988.3721
## 283 1438.95349 4988.3721
## 284 1438.95349 4988.3721
## 285 1438.95349 4988.3721
## 286 1438.95349 4988.3721
## 287 1438.95349 4988.3721
## 288 1438.95349 4988.3721
## 289 0.00000 4534.8837
## 290 0.00000 4534.8837
## 291 0.00000 4534.8837
## 292 0.00000 4534.8837
## 293 0.00000 4534.8837
## 294 0.00000 4534.8837
## 295 0.00000 4534.8837
## 296 0.00000 4534.8837
## 297 0.00000 4534.8837
## 298 0.00000 4534.8837
## 299 0.00000 4534.8837
## 300 0.00000 4534.8837
## 301 0.00000 4534.8837
## 302 0.00000 4534.8837
## 303 0.00000 4534.8837
## 304 0.00000 4534.8837
## 305 0.00000 4534.8837
## 306 0.00000 4534.8837
## 307 0.00000 4534.8837
## 308 0.00000 4534.8837
## 309 0.00000 4534.8837
## 310 0.00000 4534.8837
## 311 0.00000 4534.8837
## 312 0.00000 4534.8837
## 313 0.00000 1456.3953
## 314 0.00000 1456.3953
## 315 0.00000 1456.3953
## 316 0.00000 1456.3953
## 317 0.00000 1456.3953
## 318 0.00000 1456.3953
## 319 0.00000 1456.3953
## 320 0.00000 1456.3953
## 321 0.00000 1456.3953
## 322 0.00000 1456.3953
## 323 0.00000 1456.3953
## 324 0.00000 1456.3953
## 325 0.00000 1456.3953
## 326 0.00000 1456.3953
## 327 0.00000 1456.3953
## 328 0.00000 1456.3953
## 329 0.00000 1456.3953
## 330 0.00000 1456.3953
## 331 0.00000 1456.3953
## 332 0.00000 1456.3953
## 333 0.00000 1456.3953
## 334 0.00000 1456.3953
## 335 0.00000 1456.3953
## 336 0.00000 1456.3953
## 337 1312.50000 1059.5930
## 338 1312.50000 1059.5930
## 339 1312.50000 1059.5930
## 340 1312.50000 1059.5930
## 341 1312.50000 1059.5930
## 342 1312.50000 1059.5930
## 343 1312.50000 1059.5930
## 344 1312.50000 1059.5930
## 345 1312.50000 1059.5930
## 346 1312.50000 1059.5930
## 347 1312.50000 1059.5930
## 348 1312.50000 1059.5930
## 349 1312.50000 1059.5930
## 350 1312.50000 1059.5930
## 351 1312.50000 1059.5930
## 352 1312.50000 1059.5930
## 353 1312.50000 1059.5930
## 354 1312.50000 1059.5930
## 355 1312.50000 1059.5930
## 356 1312.50000 1059.5930
## 357 1312.50000 1059.5930
## 358 1312.50000 1059.5930
## 359 1312.50000 1059.5930
## 360 1312.50000 1059.5930
## 361 1962.20930 1360.4651
## 362 1962.20930 1360.4651
## 363 1962.20930 1360.4651
## 364 1962.20930 1360.4651
## 365 1962.20930 1360.4651
## 366 1962.20930 1360.4651
## 367 1962.20930 1360.4651
## 368 1962.20930 1360.4651
## 369 1962.20930 1360.4651
## 370 1962.20930 1360.4651
## 371 1962.20930 1360.4651
## 372 1962.20930 1360.4651
## 373 1962.20930 1360.4651
## 374 1962.20930 1360.4651
## 375 1962.20930 1360.4651
## 376 1962.20930 1360.4651
## 377 1962.20930 1360.4651
## 378 1962.20930 1360.4651
## 379 1962.20930 1360.4651
## 380 1962.20930 1360.4651
## 381 1962.20930 1360.4651
## 382 1962.20930 1360.4651
## 383 1962.20930 1360.4651
## 384 1962.20930 1360.4651
## 385 7834.88372 3155.2326
## 386 7834.88372 3155.2326
## 387 7834.88372 3155.2326
## 388 7834.88372 3155.2326
## 389 7834.88372 3155.2326
## 390 7834.88372 3155.2326
## 391 7834.88372 3155.2326
## 392 7834.88372 3155.2326
## 393 7834.88372 3155.2326
## 394 7834.88372 3155.2326
## 395 7834.88372 3155.2326
## 396 7834.88372 3155.2326
## 397 7834.88372 3155.2326
## 398 7834.88372 3155.2326
## 399 7834.88372 3155.2326
## 400 7834.88372 3155.2326
## 401 7834.88372 3155.2326
## 402 7834.88372 3155.2326
## 403 7834.88372 3155.2326
## 404 7834.88372 3155.2326
## 405 7834.88372 3155.2326
## 406 7834.88372 3155.2326
## 407 7834.88372 3155.2326
## 408 7834.88372 3155.2326
## 409 2263.95349 2190.6977
## 410 2263.95349 2190.6977
## 411 2263.95349 2190.6977
## 412 2263.95349 2190.6977
## 413 2263.95349 2190.6977
## 414 2263.95349 2190.6977
## 415 2263.95349 2190.6977
## 416 2263.95349 2190.6977
## 417 2263.95349 2190.6977
## 418 2263.95349 2190.6977
## 419 2263.95349 2190.6977
## 420 2263.95349 2190.6977
## 421 2263.95349 2190.6977
## 422 2263.95349 2190.6977
## 423 2263.95349 2190.6977
## 424 2263.95349 2190.6977
## 425 2263.95349 2190.6977
## 426 2263.95349 2190.6977
## 427 2263.95349 2190.6977
## 428 2263.95349 2190.6977
## 429 2263.95349 2190.6977
## 430 2263.95349 2190.6977
## 431 2263.95349 2190.6977
## 432 2263.95349 2190.6977
## 433 218.02326 6586.0465
## 434 218.02326 6586.0465
## 435 218.02326 6586.0465
## 436 218.02326 6586.0465
## 437 218.02326 6586.0465
## 438 218.02326 6586.0465
## 439 218.02326 6586.0465
## 440 218.02326 6586.0465
## 441 218.02326 6586.0465
## 442 218.02326 6586.0465
## 443 218.02326 6586.0465
## 444 218.02326 6586.0465
## 445 218.02326 6586.0465
## 446 218.02326 6586.0465
## 447 218.02326 6586.0465
## 448 218.02326 6586.0465
## 449 218.02326 6586.0465
## 450 218.02326 6586.0465
## 451 218.02326 6586.0465
## 452 218.02326 6586.0465
## 453 218.02326 6586.0465
## 454 218.02326 6586.0465
## 455 218.02326 6586.0465
## 456 218.02326 6586.0465
## 457 837.20930 3453.4884
## 458 837.20930 3453.4884
## 459 837.20930 3453.4884
## 460 837.20930 3453.4884
## 461 837.20930 3453.4884
## 462 837.20930 3453.4884
## 463 837.20930 3453.4884
## 464 837.20930 3453.4884
## 465 837.20930 3453.4884
## 466 837.20930 3453.4884
## 467 837.20930 3453.4884
## 468 837.20930 3453.4884
## 469 837.20930 3453.4884
## 470 837.20930 3453.4884
## 471 837.20930 3453.4884
## 472 837.20930 3453.4884
## 473 837.20930 3453.4884
## 474 837.20930 3453.4884
## 475 837.20930 3453.4884
## 476 837.20930 3453.4884
## 477 837.20930 3453.4884
## 478 837.20930 3453.4884
## 479 837.20930 3453.4884
## 480 837.20930 3453.4884
## 481 0.00000 2136.6279
## 482 0.00000 2136.6279
## 483 0.00000 2136.6279
## 484 0.00000 2136.6279
## 485 0.00000 2136.6279
## 486 0.00000 2136.6279
## 487 0.00000 2136.6279
## 488 0.00000 2136.6279
## 489 0.00000 2136.6279
## 490 0.00000 2136.6279
## 491 0.00000 2136.6279
## 492 0.00000 2136.6279
## 493 0.00000 2136.6279
## 494 0.00000 2136.6279
## 495 0.00000 2136.6279
## 496 0.00000 2136.6279
## 497 0.00000 2136.6279
## 498 0.00000 2136.6279
## 499 0.00000 2136.6279
## 500 0.00000 2136.6279
## 501 0.00000 2136.6279
## 502 0.00000 2136.6279
## 503 0.00000 2136.6279
## 504 0.00000 2136.6279
## 505 0.00000 383.7209
## 506 0.00000 383.7209
## 507 0.00000 383.7209
## 508 0.00000 383.7209
## 509 0.00000 383.7209
## 510 0.00000 383.7209
## 511 0.00000 383.7209
## 512 0.00000 383.7209
## 513 0.00000 383.7209
## 514 0.00000 383.7209
## 515 0.00000 383.7209
## 516 0.00000 383.7209
## 517 0.00000 383.7209
## 518 0.00000 383.7209
## 519 0.00000 383.7209
## 520 0.00000 383.7209
## 521 0.00000 383.7209
## 522 0.00000 383.7209
## 523 0.00000 383.7209
## 524 0.00000 383.7209
## 525 0.00000 383.7209
## 526 0.00000 383.7209
## 527 0.00000 383.7209
## 528 0.00000 383.7209
## 529 859.01163 0.0000
## 530 859.01163 0.0000
## 531 859.01163 0.0000
## 532 859.01163 0.0000
## 533 859.01163 0.0000
## 534 859.01163 0.0000
## 535 859.01163 0.0000
## 536 859.01163 0.0000
## 537 859.01163 0.0000
## 538 859.01163 0.0000
## 539 859.01163 0.0000
## 540 859.01163 0.0000
## 541 859.01163 0.0000
## 542 859.01163 0.0000
## 543 859.01163 0.0000
## 544 859.01163 0.0000
## 545 859.01163 0.0000
## 546 859.01163 0.0000
## 547 859.01163 0.0000
## 548 859.01163 0.0000
## 549 859.01163 0.0000
## 550 859.01163 0.0000
## 551 859.01163 0.0000
## 552 859.01163 0.0000
## 553 1090.11628 4469.4767
## 554 1090.11628 4469.4767
## 555 1090.11628 4469.4767
## 556 1090.11628 4469.4767
## 557 1090.11628 4469.4767
## 558 1090.11628 4469.4767
## 559 1090.11628 4469.4767
## 560 1090.11628 4469.4767
## 561 1090.11628 4469.4767
## 562 1090.11628 4469.4767
## 563 1090.11628 4469.4767
## 564 1090.11628 4469.4767
## 565 1090.11628 4469.4767
## 566 1090.11628 4469.4767
## 567 1090.11628 4469.4767
## 568 1090.11628 4469.4767
## 569 1090.11628 4469.4767
## 570 1090.11628 4469.4767
## 571 1090.11628 4469.4767
## 572 1090.11628 4469.4767
## 573 1090.11628 4469.4767
## 574 1090.11628 4469.4767
## 575 1090.11628 4469.4767
## 576 1090.11628 4469.4767
## 577 7834.88372 3155.2326
## 578 7834.88372 3155.2326
## 579 7834.88372 3155.2326
## 580 7834.88372 3155.2326
## 581 7834.88372 3155.2326
## 582 7834.88372 3155.2326
## 583 7834.88372 3155.2326
## 584 7834.88372 3155.2326
## 585 7834.88372 3155.2326
## 586 7834.88372 3155.2326
## 587 7834.88372 3155.2326
## 588 7834.88372 3155.2326
## 589 7834.88372 3155.2326
## 590 7834.88372 3155.2326
## 591 7834.88372 3155.2326
## 592 7834.88372 3155.2326
## 593 7834.88372 3155.2326
## 594 7834.88372 3155.2326
## 595 7834.88372 3155.2326
## 596 7834.88372 3155.2326
## 597 7834.88372 3155.2326
## 598 7834.88372 3155.2326
## 599 7834.88372 3155.2326
## 600 7834.88372 3155.2326
## 601 877.32558 2417.4419
## 602 877.32558 2417.4419
## 603 877.32558 2417.4419
## 604 877.32558 2417.4419
## 605 877.32558 2417.4419
## 606 877.32558 2417.4419
## 607 877.32558 2417.4419
## 608 877.32558 2417.4419
## 609 877.32558 2417.4419
## 610 877.32558 2417.4419
## 611 877.32558 2417.4419
## 612 877.32558 2417.4419
## 613 877.32558 2417.4419
## 614 877.32558 2417.4419
## 615 877.32558 2417.4419
## 616 877.32558 2417.4419
## 617 877.32558 2417.4419
## 618 877.32558 2417.4419
## 619 877.32558 2417.4419
## 620 877.32558 2417.4419
## 621 877.32558 2417.4419
## 622 877.32558 2417.4419
## 623 877.32558 2417.4419
## 624 877.32558 2417.4419
## 625 218.02326 8234.3023
## 626 218.02326 8234.3023
## 627 218.02326 8234.3023
## 628 218.02326 8234.3023
## 629 218.02326 8234.3023
## 630 218.02326 8234.3023
## 631 218.02326 8234.3023
## 632 218.02326 8234.3023
## 633 218.02326 8234.3023
## 634 218.02326 8234.3023
## 635 218.02326 8234.3023
## 636 218.02326 8234.3023
## 637 218.02326 8234.3023
## 638 218.02326 8234.3023
## 639 218.02326 8234.3023
## 640 218.02326 8234.3023
## 641 218.02326 8234.3023
## 642 218.02326 8234.3023
## 643 218.02326 8234.3023
## 644 218.02326 8234.3023
## 645 218.02326 8234.3023
## 646 218.02326 8234.3023
## 647 218.02326 8234.3023
## 648 218.02326 8234.3023
## 649 0.00000 1090.1163
## 650 0.00000 1090.1163
## 651 0.00000 1090.1163
## 652 0.00000 1090.1163
## 653 0.00000 1090.1163
## 654 0.00000 1090.1163
## 655 0.00000 1090.1163
## 656 0.00000 1090.1163
## 657 0.00000 1090.1163
## 658 0.00000 1090.1163
## 659 0.00000 1090.1163
## 660 0.00000 1090.1163
## 661 0.00000 1090.1163
## 662 0.00000 1090.1163
## 663 0.00000 1090.1163
## 664 0.00000 1090.1163
## 665 0.00000 1090.1163
## 666 0.00000 1090.1163
## 667 0.00000 1090.1163
## 668 0.00000 1090.1163
## 669 0.00000 1090.1163
## 670 0.00000 1090.1163
## 671 0.00000 1090.1163
## 672 0.00000 1090.1163
## 673 287.79070 5781.9767
## 674 287.79070 5781.9767
## 675 287.79070 5781.9767
## 676 287.79070 5781.9767
## 677 287.79070 5781.9767
## 678 287.79070 5781.9767
## 679 287.79070 5781.9767
## 680 287.79070 5781.9767
## 681 287.79070 5781.9767
## 682 287.79070 5781.9767
## 683 287.79070 5781.9767
## 684 287.79070 5781.9767
## 685 287.79070 5781.9767
## 686 287.79070 5781.9767
## 687 287.79070 5781.9767
## 688 287.79070 5781.9767
## 689 287.79070 5781.9767
## 690 287.79070 5781.9767
## 691 287.79070 5781.9767
## 692 287.79070 5781.9767
## 693 287.79070 5781.9767
## 694 287.79070 5781.9767
## 695 287.79070 5781.9767
## 696 287.79070 5781.9767
## 697 1090.11628 0.0000
## 698 1090.11628 0.0000
## 699 1090.11628 0.0000
## 700 1090.11628 0.0000
## 701 1090.11628 0.0000
## 702 1090.11628 0.0000
## 703 1090.11628 0.0000
## 704 1090.11628 0.0000
## 705 1090.11628 0.0000
## 706 1090.11628 0.0000
## 707 1090.11628 0.0000
## 708 1090.11628 0.0000
## 709 1090.11628 0.0000
## 710 1090.11628 0.0000
## 711 1090.11628 0.0000
## 712 1090.11628 0.0000
## 713 1090.11628 0.0000
## 714 1090.11628 0.0000
## 715 1090.11628 0.0000
## 716 1090.11628 0.0000
## 717 1090.11628 0.0000
## 718 1090.11628 0.0000
## 719 1090.11628 0.0000
## 720 1090.11628 0.0000
## 721 505.81395 1369.1860
## 722 505.81395 1369.1860
## 723 505.81395 1369.1860
## 724 505.81395 1369.1860
## 725 505.81395 1369.1860
## 726 505.81395 1369.1860
## 727 505.81395 1369.1860
## 728 505.81395 1369.1860
## 729 505.81395 1369.1860
## 730 505.81395 1369.1860
## 731 505.81395 1369.1860
## 732 505.81395 1369.1860
## 733 505.81395 1369.1860
## 734 505.81395 1369.1860
## 735 505.81395 1369.1860
## 736 505.81395 1369.1860
## 737 505.81395 1369.1860
## 738 505.81395 1369.1860
## 739 505.81395 1369.1860
## 740 505.81395 1369.1860
## 741 505.81395 1369.1860
## 742 505.81395 1369.1860
## 743 505.81395 1369.1860
## 744 505.81395 1369.1860
## 745 0.00000 170.0581
## 746 0.00000 170.0581
## 747 0.00000 170.0581
## 748 0.00000 170.0581
## 749 0.00000 170.0581
## 750 0.00000 170.0581
## 751 0.00000 170.0581
## 752 0.00000 170.0581
## 753 0.00000 170.0581
## 754 0.00000 170.0581
## 755 0.00000 170.0581
## 756 0.00000 170.0581
## 757 0.00000 170.0581
## 758 0.00000 170.0581
## 759 0.00000 170.0581
## 760 0.00000 170.0581
## 761 0.00000 170.0581
## 762 0.00000 170.0581
## 763 0.00000 170.0581
## 764 0.00000 170.0581
## 765 0.00000 170.0581
## 766 0.00000 170.0581
## 767 0.00000 170.0581
## 768 0.00000 170.0581
## 769 7834.88372 3155.2326
## 770 7834.88372 3155.2326
## 771 7834.88372 3155.2326
## 772 7834.88372 3155.2326
## 773 7834.88372 3155.2326
## 774 7834.88372 3155.2326
## 775 7834.88372 3155.2326
## 776 7834.88372 3155.2326
## 777 7834.88372 3155.2326
## 778 7834.88372 3155.2326
## 779 7834.88372 3155.2326
## 780 7834.88372 3155.2326
## 781 7834.88372 3155.2326
## 782 7834.88372 3155.2326
## 783 7834.88372 3155.2326
## 784 7834.88372 3155.2326
## 785 7834.88372 3155.2326
## 786 7834.88372 3155.2326
## 787 7834.88372 3155.2326
## 788 7834.88372 3155.2326
## 789 7834.88372 3155.2326
## 790 7834.88372 3155.2326
## 791 7834.88372 3155.2326
## 792 7834.88372 3155.2326
## 793 1967.44186 6743.0233
## 794 1967.44186 6743.0233
## 795 1967.44186 6743.0233
## 796 1967.44186 6743.0233
## 797 1967.44186 6743.0233
## 798 1967.44186 6743.0233
## 799 1967.44186 6743.0233
## 800 1967.44186 6743.0233
## 801 1967.44186 6743.0233
## 802 1967.44186 6743.0233
## 803 1967.44186 6743.0233
## 804 1967.44186 6743.0233
## 805 1967.44186 6743.0233
## 806 1967.44186 6743.0233
## 807 1967.44186 6743.0233
## 808 1967.44186 6743.0233
## 809 1967.44186 6743.0233
## 810 1967.44186 6743.0233
## 811 1967.44186 6743.0233
## 812 1967.44186 6743.0233
## 813 1967.44186 6743.0233
## 814 1967.44186 6743.0233
## 815 1967.44186 6743.0233
## 816 1967.44186 6743.0233
## 817 218.02326 5661.6279
## 818 218.02326 5661.6279
## 819 218.02326 5661.6279
## 820 218.02326 5661.6279
## 821 218.02326 5661.6279
## 822 218.02326 5661.6279
## 823 218.02326 5661.6279
## 824 218.02326 5661.6279
## 825 218.02326 5661.6279
## 826 218.02326 5661.6279
## 827 218.02326 5661.6279
## 828 218.02326 5661.6279
## 829 218.02326 5661.6279
## 830 218.02326 5661.6279
## 831 218.02326 5661.6279
## 832 218.02326 5661.6279
## 833 218.02326 5661.6279
## 834 218.02326 5661.6279
## 835 218.02326 5661.6279
## 836 218.02326 5661.6279
## 837 218.02326 5661.6279
## 838 218.02326 5661.6279
## 839 218.02326 5661.6279
## 840 218.02326 5661.6279
## 841 0.00000 5293.6047
## 842 0.00000 5293.6047
## 843 0.00000 5293.6047
## 844 0.00000 5293.6047
## 845 0.00000 5293.6047
## 846 0.00000 5293.6047
## 847 0.00000 5293.6047
## 848 0.00000 5293.6047
## 849 0.00000 5293.6047
## 850 0.00000 5293.6047
## 851 0.00000 5293.6047
## 852 0.00000 5293.6047
## 853 0.00000 5293.6047
## 854 0.00000 5293.6047
## 855 0.00000 5293.6047
## 856 0.00000 5293.6047
## 857 0.00000 5293.6047
## 858 0.00000 5293.6047
## 859 0.00000 5293.6047
## 860 0.00000 5293.6047
## 861 0.00000 5293.6047
## 862 0.00000 5293.6047
## 863 0.00000 5293.6047
## 864 0.00000 5293.6047
## 865 0.00000 3654.0698
## 866 0.00000 3654.0698
## 867 0.00000 3654.0698
## 868 0.00000 3654.0698
## 869 0.00000 3654.0698
## 870 0.00000 3654.0698
## 871 0.00000 3654.0698
## 872 0.00000 3654.0698
## 873 0.00000 3654.0698
## 874 0.00000 3654.0698
## 875 0.00000 3654.0698
## 876 0.00000 3654.0698
## 877 0.00000 3654.0698
## 878 0.00000 3654.0698
## 879 0.00000 3654.0698
## 880 0.00000 3654.0698
## 881 0.00000 3654.0698
## 882 0.00000 3654.0698
## 883 0.00000 3654.0698
## 884 0.00000 3654.0698
## 885 0.00000 3654.0698
## 886 0.00000 3654.0698
## 887 0.00000 3654.0698
## 888 0.00000 3654.0698
## 889 0.00000 2581.3953
## 890 0.00000 2581.3953
## 891 0.00000 2581.3953
## 892 0.00000 2581.3953
## 893 0.00000 2581.3953
## 894 0.00000 2581.3953
## 895 0.00000 2581.3953
## 896 0.00000 2581.3953
## 897 0.00000 2581.3953
## 898 0.00000 2581.3953
## 899 0.00000 2581.3953
## 900 0.00000 2581.3953
## 901 0.00000 2581.3953
## 902 0.00000 2581.3953
## 903 0.00000 2581.3953
## 904 0.00000 2581.3953
## 905 0.00000 2581.3953
## 906 0.00000 2581.3953
## 907 0.00000 2581.3953
## 908 0.00000 2581.3953
## 909 0.00000 2581.3953
## 910 0.00000 2581.3953
## 911 0.00000 2581.3953
## 912 0.00000 2581.3953
## 913 1609.01163 1046.5116
## 914 1609.01163 1046.5116
## 915 1609.01163 1046.5116
## 916 1609.01163 1046.5116
## 917 1609.01163 1046.5116
## 918 1609.01163 1046.5116
## 919 1609.01163 1046.5116
## 920 1609.01163 1046.5116
## 921 1609.01163 1046.5116
## 922 1609.01163 1046.5116
## 923 1609.01163 1046.5116
## 924 1609.01163 1046.5116
## 925 1609.01163 1046.5116
## 926 1609.01163 1046.5116
## 927 1609.01163 1046.5116
## 928 1609.01163 1046.5116
## 929 1609.01163 1046.5116
## 930 1609.01163 1046.5116
## 931 1609.01163 1046.5116
## 932 1609.01163 1046.5116
## 933 1609.01163 1046.5116
## 934 1609.01163 1046.5116
## 935 1609.01163 1046.5116
## 936 1609.01163 1046.5116
## 937 837.20930 1090.1163
## 938 837.20930 1090.1163
## 939 837.20930 1090.1163
## 940 837.20930 1090.1163
## 941 837.20930 1090.1163
## 942 837.20930 1090.1163
## 943 837.20930 1090.1163
## 944 837.20930 1090.1163
## 945 837.20930 1090.1163
## 946 837.20930 1090.1163
## 947 837.20930 1090.1163
## 948 837.20930 1090.1163
## 949 837.20930 1090.1163
## 950 837.20930 1090.1163
## 951 837.20930 1090.1163
## 952 837.20930 1090.1163
## 953 837.20930 1090.1163
## 954 837.20930 1090.1163
## 955 837.20930 1090.1163
## 956 837.20930 1090.1163
## 957 837.20930 1090.1163
## 958 837.20930 1090.1163
## 959 837.20930 1090.1163
## 960 837.20930 1090.1163
## 961 7834.88372 3155.2326
## 962 7834.88372 3155.2326
## 963 7834.88372 3155.2326
## 964 7834.88372 3155.2326
## 965 7834.88372 3155.2326
## 966 7834.88372 3155.2326
## 967 7834.88372 3155.2326
## 968 7834.88372 3155.2326
## 969 7834.88372 3155.2326
## 970 7834.88372 3155.2326
## 971 7834.88372 3155.2326
## 972 7834.88372 3155.2326
## 973 7834.88372 3155.2326
## 974 7834.88372 3155.2326
## 975 7834.88372 3155.2326
## 976 7834.88372 3155.2326
## 977 7834.88372 3155.2326
## 978 7834.88372 3155.2326
## 979 7834.88372 3155.2326
## 980 7834.88372 3155.2326
## 981 7834.88372 3155.2326
## 982 7834.88372 3155.2326
## 983 7834.88372 3155.2326
## 984 7834.88372 3155.2326
## 985 2256.97674 3804.0698
## 986 2256.97674 3804.0698
## 987 2256.97674 3804.0698
## 988 2256.97674 3804.0698
## 989 2256.97674 3804.0698
## 990 2256.97674 3804.0698
## 991 2256.97674 3804.0698
## 992 2256.97674 3804.0698
## 993 2256.97674 3804.0698
## 994 2256.97674 3804.0698
## 995 2256.97674 3804.0698
## 996 2256.97674 3804.0698
## 997 2256.97674 3804.0698
## 998 2256.97674 3804.0698
## 999 2256.97674 3804.0698
## 1000 2256.97674 3804.0698
## 1001 2256.97674 3804.0698
## 1002 2256.97674 3804.0698
## 1003 2256.97674 3804.0698
## 1004 2256.97674 3804.0698
## 1005 2256.97674 3804.0698
## 1006 2256.97674 3804.0698
## 1007 2256.97674 3804.0698
## 1008 2256.97674 3804.0698
## 1009 1773.83721 1559.3023
## 1010 1773.83721 1559.3023
## 1011 1773.83721 1559.3023
## 1012 1773.83721 1559.3023
## 1013 1773.83721 1559.3023
## 1014 1773.83721 1559.3023
## 1015 1773.83721 1559.3023
## 1016 1773.83721 1559.3023
## 1017 1773.83721 1559.3023
## 1018 1773.83721 1559.3023
## 1019 1773.83721 1559.3023
## 1020 1773.83721 1559.3023
## 1021 1773.83721 1559.3023
## 1022 1773.83721 1559.3023
## 1023 1773.83721 1559.3023
## 1024 1773.83721 1559.3023
## 1025 1773.83721 1559.3023
## 1026 1773.83721 1559.3023
## 1027 1773.83721 1559.3023
## 1028 1773.83721 1559.3023
## 1029 1773.83721 1559.3023
## 1030 1773.83721 1559.3023
## 1031 1773.83721 1559.3023
## 1032 1773.83721 1559.3023
## 1033 0.00000 5644.1860
## 1034 0.00000 5644.1860
## 1035 0.00000 5644.1860
## 1036 0.00000 5644.1860
## 1037 0.00000 5644.1860
## 1038 0.00000 5644.1860
## 1039 0.00000 5644.1860
## 1040 0.00000 5644.1860
## 1041 0.00000 5644.1860
## 1042 0.00000 5644.1860
## 1043 0.00000 5644.1860
## 1044 0.00000 5644.1860
## 1045 0.00000 5644.1860
## 1046 0.00000 5644.1860
## 1047 0.00000 5644.1860
## 1048 0.00000 5644.1860
## 1049 0.00000 5644.1860
## 1050 0.00000 5644.1860
## 1051 0.00000 5644.1860
## 1052 0.00000 5644.1860
## 1053 0.00000 5644.1860
## 1054 0.00000 5644.1860
## 1055 0.00000 5644.1860
## 1056 0.00000 5644.1860
## 1057 0.00000 4822.6744
## 1058 0.00000 4822.6744
## 1059 0.00000 4822.6744
## 1060 0.00000 4822.6744
## 1061 0.00000 4822.6744
## 1062 0.00000 4822.6744
## 1063 0.00000 4822.6744
## 1064 0.00000 4822.6744
## 1065 0.00000 4822.6744
## 1066 0.00000 4822.6744
## 1067 0.00000 4822.6744
## 1068 0.00000 4822.6744
## 1069 0.00000 4822.6744
## 1070 0.00000 4822.6744
## 1071 0.00000 4822.6744
## 1072 0.00000 4822.6744
## 1073 0.00000 4822.6744
## 1074 0.00000 4822.6744
## 1075 0.00000 4822.6744
## 1076 0.00000 4822.6744
## 1077 0.00000 4822.6744
## 1078 0.00000 4822.6744
## 1079 0.00000 4822.6744
## 1080 0.00000 4822.6744
## 1081 0.00000 2956.3953
## 1082 0.00000 2956.3953
## 1083 0.00000 2956.3953
## 1084 0.00000 2956.3953
## 1085 0.00000 2956.3953
## 1086 0.00000 2956.3953
## 1087 0.00000 2956.3953
## 1088 0.00000 2956.3953
## 1089 0.00000 2956.3953
## 1090 0.00000 2956.3953
## 1091 0.00000 2956.3953
## 1092 0.00000 2956.3953
## 1093 0.00000 2956.3953
## 1094 0.00000 2956.3953
## 1095 0.00000 2956.3953
## 1096 0.00000 2956.3953
## 1097 0.00000 2956.3953
## 1098 0.00000 2956.3953
## 1099 0.00000 2956.3953
## 1100 0.00000 2956.3953
## 1101 0.00000 2956.3953
## 1102 0.00000 2956.3953
## 1103 0.00000 2956.3953
## 1104 0.00000 2956.3953
## 1105 0.00000 662.7907
## 1106 0.00000 662.7907
## 1107 0.00000 662.7907
## 1108 0.00000 662.7907
## 1109 0.00000 662.7907
## 1110 0.00000 662.7907
## 1111 0.00000 662.7907
## 1112 0.00000 662.7907
## 1113 0.00000 662.7907
## 1114 0.00000 662.7907
## 1115 0.00000 662.7907
## 1116 0.00000 662.7907
## 1117 0.00000 662.7907
## 1118 0.00000 662.7907
## 1119 0.00000 662.7907
## 1120 0.00000 662.7907
## 1121 0.00000 662.7907
## 1122 0.00000 662.7907
## 1123 0.00000 662.7907
## 1124 0.00000 662.7907
## 1125 0.00000 662.7907
## 1126 0.00000 662.7907
## 1127 0.00000 662.7907
## 1128 0.00000 662.7907
## 1129 1090.11628 2428.7791
## 1130 1090.11628 2428.7791
## 1131 1090.11628 2428.7791
## 1132 1090.11628 2428.7791
## 1133 1090.11628 2428.7791
## 1134 1090.11628 2428.7791
## 1135 1090.11628 2428.7791
## 1136 1090.11628 2428.7791
## 1137 1090.11628 2428.7791
## 1138 1090.11628 2428.7791
## 1139 1090.11628 2428.7791
## 1140 1090.11628 2428.7791
## 1141 1090.11628 2428.7791
## 1142 1090.11628 2428.7791
## 1143 1090.11628 2428.7791
## 1144 1090.11628 2428.7791
## 1145 1090.11628 2428.7791
## 1146 1090.11628 2428.7791
## 1147 1090.11628 2428.7791
## 1148 1090.11628 2428.7791
## 1149 1090.11628 2428.7791
## 1150 1090.11628 2428.7791
## 1151 1090.11628 2428.7791
## 1152 1090.11628 2428.7791
## 1153 7834.88372 3155.2326
## 1154 7834.88372 3155.2326
## 1155 7834.88372 3155.2326
## 1156 7834.88372 3155.2326
## 1157 7834.88372 3155.2326
## 1158 7834.88372 3155.2326
## 1159 7834.88372 3155.2326
## 1160 7834.88372 3155.2326
## 1161 7834.88372 3155.2326
## 1162 7834.88372 3155.2326
## 1163 7834.88372 3155.2326
## 1164 7834.88372 3155.2326
## 1165 7834.88372 3155.2326
## 1166 7834.88372 3155.2326
## 1167 7834.88372 3155.2326
## 1168 7834.88372 3155.2326
## 1169 7834.88372 3155.2326
## 1170 7834.88372 3155.2326
## 1171 7834.88372 3155.2326
## 1172 7834.88372 3155.2326
## 1173 7834.88372 3155.2326
## 1174 7834.88372 3155.2326
## 1175 7834.88372 3155.2326
## 1176 7834.88372 3155.2326
## 1177 1140.69767 7632.5581
## 1178 1140.69767 7632.5581
## 1179 1140.69767 7632.5581
## 1180 1140.69767 7632.5581
## 1181 1140.69767 7632.5581
## 1182 1140.69767 7632.5581
## 1183 1140.69767 7632.5581
## 1184 1140.69767 7632.5581
## 1185 1140.69767 7632.5581
## 1186 1140.69767 7632.5581
## 1187 1140.69767 7632.5581
## 1188 1140.69767 7632.5581
## 1189 1140.69767 7632.5581
## 1190 1140.69767 7632.5581
## 1191 1140.69767 7632.5581
## 1192 1140.69767 7632.5581
## 1193 1140.69767 7632.5581
## 1194 1140.69767 7632.5581
## 1195 1140.69767 7632.5581
## 1196 1140.69767 7632.5581
## 1197 1140.69767 7632.5581
## 1198 1140.69767 7632.5581
## 1199 1140.69767 7632.5581
## 1200 1140.69767 7632.5581
## 1201 1773.83721 3312.2093
## 1202 1773.83721 3312.2093
## 1203 1773.83721 3312.2093
## 1204 1773.83721 3312.2093
## 1205 1773.83721 3312.2093
## 1206 1773.83721 3312.2093
## 1207 1773.83721 3312.2093
## 1208 1773.83721 3312.2093
## 1209 1773.83721 3312.2093
## 1210 1773.83721 3312.2093
## 1211 1773.83721 3312.2093
## 1212 1773.83721 3312.2093
## 1213 1773.83721 3312.2093
## 1214 1773.83721 3312.2093
## 1215 1773.83721 3312.2093
## 1216 1773.83721 3312.2093
## 1217 1773.83721 3312.2093
## 1218 1773.83721 3312.2093
## 1219 1773.83721 3312.2093
## 1220 1773.83721 3312.2093
## 1221 1773.83721 3312.2093
## 1222 1773.83721 3312.2093
## 1223 1773.83721 3312.2093
## 1224 1773.83721 3312.2093
## 1225 1438.95349 5548.2558
## 1226 1438.95349 5548.2558
## 1227 1438.95349 5548.2558
## 1228 1438.95349 5548.2558
## 1229 1438.95349 5548.2558
## 1230 1438.95349 5548.2558
## 1231 1438.95349 5548.2558
## 1232 1438.95349 5548.2558
## 1233 1438.95349 5548.2558
## 1234 1438.95349 5548.2558
## 1235 1438.95349 5548.2558
## 1236 1438.95349 5548.2558
## 1237 1438.95349 5548.2558
## 1238 1438.95349 5548.2558
## 1239 1438.95349 5548.2558
## 1240 1438.95349 5548.2558
## 1241 1438.95349 5548.2558
## 1242 1438.95349 5548.2558
## 1243 1438.95349 5548.2558
## 1244 1438.95349 5548.2558
## 1245 1438.95349 5548.2558
## 1246 1438.95349 5548.2558
## 1247 1438.95349 5548.2558
## 1248 1438.95349 5548.2558
## 1249 0.00000 4116.2791
## 1250 0.00000 4116.2791
## 1251 0.00000 4116.2791
## 1252 0.00000 4116.2791
## 1253 0.00000 4116.2791
## 1254 0.00000 4116.2791
## 1255 0.00000 4116.2791
## 1256 0.00000 4116.2791
## 1257 0.00000 4116.2791
## 1258 0.00000 4116.2791
## 1259 0.00000 4116.2791
## 1260 0.00000 4116.2791
## 1261 0.00000 4116.2791
## 1262 0.00000 4116.2791
## 1263 0.00000 4116.2791
## 1264 0.00000 4116.2791
## 1265 0.00000 4116.2791
## 1266 0.00000 4116.2791
## 1267 0.00000 4116.2791
## 1268 0.00000 4116.2791
## 1269 0.00000 4116.2791
## 1270 0.00000 4116.2791
## 1271 0.00000 4116.2791
## 1272 0.00000 4116.2791
## 1273 0.00000 1456.3953
## 1274 0.00000 1456.3953
## 1275 0.00000 1456.3953
## 1276 0.00000 1456.3953
## 1277 0.00000 1456.3953
## 1278 0.00000 1456.3953
## 1279 0.00000 1456.3953
## 1280 0.00000 1456.3953
## 1281 0.00000 1456.3953
## 1282 0.00000 1456.3953
## 1283 0.00000 1456.3953
## 1284 0.00000 1456.3953
## 1285 0.00000 1456.3953
## 1286 0.00000 1456.3953
## 1287 0.00000 1456.3953
## 1288 0.00000 1456.3953
## 1289 0.00000 1456.3953
## 1290 0.00000 1456.3953
## 1291 0.00000 1456.3953
## 1292 0.00000 1456.3953
## 1293 0.00000 1456.3953
## 1294 0.00000 1456.3953
## 1295 0.00000 1456.3953
## 1296 0.00000 1456.3953
## 1297 1312.50000 1059.5930
## 1298 1312.50000 1059.5930
## 1299 1312.50000 1059.5930
## 1300 1312.50000 1059.5930
## 1301 1312.50000 1059.5930
## 1302 1312.50000 1059.5930
## 1303 1312.50000 1059.5930
## 1304 1312.50000 1059.5930
## 1305 1312.50000 1059.5930
## 1306 1312.50000 1059.5930
## 1307 1312.50000 1059.5930
## 1308 1312.50000 1059.5930
## 1309 1312.50000 1059.5930
## 1310 1312.50000 1059.5930
## 1311 1312.50000 1059.5930
## 1312 1312.50000 1059.5930
## 1313 1312.50000 1059.5930
## 1314 1312.50000 1059.5930
## 1315 1312.50000 1059.5930
## 1316 1312.50000 1059.5930
## 1317 1312.50000 1059.5930
## 1318 1312.50000 1059.5930
## 1319 1312.50000 1059.5930
## 1320 1312.50000 1059.5930
## 1321 1962.20930 1360.4651
## 1322 1962.20930 1360.4651
## 1323 1962.20930 1360.4651
## 1324 1962.20930 1360.4651
## 1325 1962.20930 1360.4651
## 1326 1962.20930 1360.4651
## 1327 1962.20930 1360.4651
## 1328 1962.20930 1360.4651
## 1329 1962.20930 1360.4651
## 1330 1962.20930 1360.4651
## 1331 1962.20930 1360.4651
## 1332 1962.20930 1360.4651
## 1333 1962.20930 1360.4651
## 1334 1962.20930 1360.4651
## 1335 1962.20930 1360.4651
## 1336 1962.20930 1360.4651
## 1337 1962.20930 1360.4651
## 1338 1962.20930 1360.4651
## 1339 1962.20930 1360.4651
## 1340 1962.20930 1360.4651
## 1341 1962.20930 1360.4651
## 1342 1962.20930 1360.4651
## 1343 1962.20930 1360.4651
## 1344 1962.20930 1360.4651
## 1345 7834.88372 3155.2326
## 1346 7834.88372 3155.2326
## 1347 7834.88372 3155.2326
## 1348 7834.88372 3155.2326
## 1349 7834.88372 3155.2326
## 1350 7834.88372 3155.2326
## 1351 7834.88372 3155.2326
## 1352 7834.88372 3155.2326
## 1353 7834.88372 3155.2326
## 1354 7834.88372 3155.2326
## 1355 7834.88372 3155.2326
## 1356 7834.88372 3155.2326
## 1357 7834.88372 3155.2326
## 1358 7834.88372 3155.2326
## 1359 7834.88372 3155.2326
## 1360 7834.88372 3155.2326
## 1361 7834.88372 3155.2326
## 1362 7834.88372 3155.2326
## 1363 7834.88372 3155.2326
## 1364 7834.88372 3155.2326
## 1365 7834.88372 3155.2326
## 1366 7834.88372 3155.2326
## 1367 7834.88372 3155.2326
## 1368 7834.88372 3155.2326
## 1369 1463.37209 1510.4651
## 1370 1463.37209 1510.4651
## 1371 1463.37209 1510.4651
## 1372 1463.37209 1510.4651
## 1373 1463.37209 1510.4651
## 1374 1463.37209 1510.4651
## 1375 1463.37209 1510.4651
## 1376 1463.37209 1510.4651
## 1377 1463.37209 1510.4651
## 1378 1463.37209 1510.4651
## 1379 1463.37209 1510.4651
## 1380 1463.37209 1510.4651
## 1381 1463.37209 1510.4651
## 1382 1463.37209 1510.4651
## 1383 1463.37209 1510.4651
## 1384 1463.37209 1510.4651
## 1385 1463.37209 1510.4651
## 1386 1463.37209 1510.4651
## 1387 1463.37209 1510.4651
## 1388 1463.37209 1510.4651
## 1389 1463.37209 1510.4651
## 1390 1463.37209 1510.4651
## 1391 1463.37209 1510.4651
## 1392 1463.37209 1510.4651
## 1393 1773.83721 6826.7442
## 1394 1773.83721 6826.7442
## 1395 1773.83721 6826.7442
## 1396 1773.83721 6826.7442
## 1397 1773.83721 6826.7442
## 1398 1773.83721 6826.7442
## 1399 1773.83721 6826.7442
## 1400 1773.83721 6826.7442
## 1401 1773.83721 6826.7442
## 1402 1773.83721 6826.7442
## 1403 1773.83721 6826.7442
## 1404 1773.83721 6826.7442
## 1405 1773.83721 6826.7442
## 1406 1773.83721 6826.7442
## 1407 1773.83721 6826.7442
## 1408 1773.83721 6826.7442
## 1409 1773.83721 6826.7442
## 1410 1773.83721 6826.7442
## 1411 1773.83721 6826.7442
## 1412 1773.83721 6826.7442
## 1413 1773.83721 6826.7442
## 1414 1773.83721 6826.7442
## 1415 1773.83721 6826.7442
## 1416 1773.83721 6826.7442
## 1417 837.20930 4013.3721
## 1418 837.20930 4013.3721
## 1419 837.20930 4013.3721
## 1420 837.20930 4013.3721
## 1421 837.20930 4013.3721
## 1422 837.20930 4013.3721
## 1423 837.20930 4013.3721
## 1424 837.20930 4013.3721
## 1425 837.20930 4013.3721
## 1426 837.20930 4013.3721
## 1427 837.20930 4013.3721
## 1428 837.20930 4013.3721
## 1429 837.20930 4013.3721
## 1430 837.20930 4013.3721
## 1431 837.20930 4013.3721
## 1432 837.20930 4013.3721
## 1433 837.20930 4013.3721
## 1434 837.20930 4013.3721
## 1435 837.20930 4013.3721
## 1436 837.20930 4013.3721
## 1437 837.20930 4013.3721
## 1438 837.20930 4013.3721
## 1439 837.20930 4013.3721
## 1440 837.20930 4013.3721
## 1441 0.00000 1718.0233
## 1442 0.00000 1718.0233
## 1443 0.00000 1718.0233
## 1444 0.00000 1718.0233
## 1445 0.00000 1718.0233
## 1446 0.00000 1718.0233
## 1447 0.00000 1718.0233
## 1448 0.00000 1718.0233
## 1449 0.00000 1718.0233
## 1450 0.00000 1718.0233
## 1451 0.00000 1718.0233
## 1452 0.00000 1718.0233
## 1453 0.00000 1718.0233
## 1454 0.00000 1718.0233
## 1455 0.00000 1718.0233
## 1456 0.00000 1718.0233
## 1457 0.00000 1718.0233
## 1458 0.00000 1718.0233
## 1459 0.00000 1718.0233
## 1460 0.00000 1718.0233
## 1461 0.00000 1718.0233
## 1462 0.00000 1718.0233
## 1463 0.00000 1718.0233
## 1464 0.00000 1718.0233
## 1465 0.00000 383.7209
## 1466 0.00000 383.7209
## 1467 0.00000 383.7209
## 1468 0.00000 383.7209
## 1469 0.00000 383.7209
## 1470 0.00000 383.7209
## 1471 0.00000 383.7209
## 1472 0.00000 383.7209
## 1473 0.00000 383.7209
## 1474 0.00000 383.7209
## 1475 0.00000 383.7209
## 1476 0.00000 383.7209
## 1477 0.00000 383.7209
## 1478 0.00000 383.7209
## 1479 0.00000 383.7209
## 1480 0.00000 383.7209
## 1481 0.00000 383.7209
## 1482 0.00000 383.7209
## 1483 0.00000 383.7209
## 1484 0.00000 383.7209
## 1485 0.00000 383.7209
## 1486 0.00000 383.7209
## 1487 0.00000 383.7209
## 1488 0.00000 383.7209
## 1489 859.01163 0.0000
## 1490 859.01163 0.0000
## 1491 859.01163 0.0000
## 1492 859.01163 0.0000
## 1493 859.01163 0.0000
## 1494 859.01163 0.0000
## 1495 859.01163 0.0000
## 1496 859.01163 0.0000
## 1497 859.01163 0.0000
## 1498 859.01163 0.0000
## 1499 859.01163 0.0000
## 1500 859.01163 0.0000
## 1501 859.01163 0.0000
## 1502 859.01163 0.0000
## 1503 859.01163 0.0000
## 1504 859.01163 0.0000
## 1505 859.01163 0.0000
## 1506 859.01163 0.0000
## 1507 859.01163 0.0000
## 1508 859.01163 0.0000
## 1509 859.01163 0.0000
## 1510 859.01163 0.0000
## 1511 859.01163 0.0000
## 1512 859.01163 0.0000
## 1513 1090.11628 4469.4767
## 1514 1090.11628 4469.4767
## 1515 1090.11628 4469.4767
## 1516 1090.11628 4469.4767
## 1517 1090.11628 4469.4767
## 1518 1090.11628 4469.4767
## 1519 1090.11628 4469.4767
## 1520 1090.11628 4469.4767
## 1521 1090.11628 4469.4767
## 1522 1090.11628 4469.4767
## 1523 1090.11628 4469.4767
## 1524 1090.11628 4469.4767
## 1525 1090.11628 4469.4767
## 1526 1090.11628 4469.4767
## 1527 1090.11628 4469.4767
## 1528 1090.11628 4469.4767
## 1529 1090.11628 4469.4767
## 1530 1090.11628 4469.4767
## 1531 1090.11628 4469.4767
## 1532 1090.11628 4469.4767
## 1533 1090.11628 4469.4767
## 1534 1090.11628 4469.4767
## 1535 1090.11628 4469.4767
## 1536 1090.11628 4469.4767
## 1537 7834.88372 3155.2326
## 1538 7834.88372 3155.2326
## 1539 7834.88372 3155.2326
## 1540 7834.88372 3155.2326
## 1541 7834.88372 3155.2326
## 1542 7834.88372 3155.2326
## 1543 7834.88372 3155.2326
## 1544 7834.88372 3155.2326
## 1545 7834.88372 3155.2326
## 1546 7834.88372 3155.2326
## 1547 7834.88372 3155.2326
## 1548 7834.88372 3155.2326
## 1549 7834.88372 3155.2326
## 1550 7834.88372 3155.2326
## 1551 7834.88372 3155.2326
## 1552 7834.88372 3155.2326
## 1553 7834.88372 3155.2326
## 1554 7834.88372 3155.2326
## 1555 7834.88372 3155.2326
## 1556 7834.88372 3155.2326
## 1557 7834.88372 3155.2326
## 1558 7834.88372 3155.2326
## 1559 7834.88372 3155.2326
## 1560 7834.88372 3155.2326
## 1561 76.74419 1737.2093
## 1562 76.74419 1737.2093
## 1563 76.74419 1737.2093
## 1564 76.74419 1737.2093
## 1565 76.74419 1737.2093
## 1566 76.74419 1737.2093
## 1567 76.74419 1737.2093
## 1568 76.74419 1737.2093
## 1569 76.74419 1737.2093
## 1570 76.74419 1737.2093
## 1571 76.74419 1737.2093
## 1572 76.74419 1737.2093
## 1573 76.74419 1737.2093
## 1574 76.74419 1737.2093
## 1575 76.74419 1737.2093
## 1576 76.74419 1737.2093
## 1577 76.74419 1737.2093
## 1578 76.74419 1737.2093
## 1579 76.74419 1737.2093
## 1580 76.74419 1737.2093
## 1581 76.74419 1737.2093
## 1582 76.74419 1737.2093
## 1583 76.74419 1737.2093
## 1584 76.74419 1737.2093
## 1585 1773.83721 8475.0000
## 1586 1773.83721 8475.0000
## 1587 1773.83721 8475.0000
## 1588 1773.83721 8475.0000
## 1589 1773.83721 8475.0000
## 1590 1773.83721 8475.0000
## 1591 1773.83721 8475.0000
## 1592 1773.83721 8475.0000
## 1593 1773.83721 8475.0000
## 1594 1773.83721 8475.0000
## 1595 1773.83721 8475.0000
## 1596 1773.83721 8475.0000
## 1597 1773.83721 8475.0000
## 1598 1773.83721 8475.0000
## 1599 1773.83721 8475.0000
## 1600 1773.83721 8475.0000
## 1601 1773.83721 8475.0000
## 1602 1773.83721 8475.0000
## 1603 1773.83721 8475.0000
## 1604 1773.83721 8475.0000
## 1605 1773.83721 8475.0000
## 1606 1773.83721 8475.0000
## 1607 1773.83721 8475.0000
## 1608 1773.83721 8475.0000
## 1609 0.00000 1650.0000
## 1610 0.00000 1650.0000
## 1611 0.00000 1650.0000
## 1612 0.00000 1650.0000
## 1613 0.00000 1650.0000
## 1614 0.00000 1650.0000
## 1615 0.00000 1650.0000
## 1616 0.00000 1650.0000
## 1617 0.00000 1650.0000
## 1618 0.00000 1650.0000
## 1619 0.00000 1650.0000
## 1620 0.00000 1650.0000
## 1621 0.00000 1650.0000
## 1622 0.00000 1650.0000
## 1623 0.00000 1650.0000
## 1624 0.00000 1650.0000
## 1625 0.00000 1650.0000
## 1626 0.00000 1650.0000
## 1627 0.00000 1650.0000
## 1628 0.00000 1650.0000
## 1629 0.00000 1650.0000
## 1630 0.00000 1650.0000
## 1631 0.00000 1650.0000
## 1632 0.00000 1650.0000
## 1633 287.79070 5363.3721
## 1634 287.79070 5363.3721
## 1635 287.79070 5363.3721
## 1636 287.79070 5363.3721
## 1637 287.79070 5363.3721
## 1638 287.79070 5363.3721
## 1639 287.79070 5363.3721
## 1640 287.79070 5363.3721
## 1641 287.79070 5363.3721
## 1642 287.79070 5363.3721
## 1643 287.79070 5363.3721
## 1644 287.79070 5363.3721
## 1645 287.79070 5363.3721
## 1646 287.79070 5363.3721
## 1647 287.79070 5363.3721
## 1648 287.79070 5363.3721
## 1649 287.79070 5363.3721
## 1650 287.79070 5363.3721
## 1651 287.79070 5363.3721
## 1652 287.79070 5363.3721
## 1653 287.79070 5363.3721
## 1654 287.79070 5363.3721
## 1655 287.79070 5363.3721
## 1656 287.79070 5363.3721
## 1657 1090.11628 0.0000
## 1658 1090.11628 0.0000
## 1659 1090.11628 0.0000
## 1660 1090.11628 0.0000
## 1661 1090.11628 0.0000
## 1662 1090.11628 0.0000
## 1663 1090.11628 0.0000
## 1664 1090.11628 0.0000
## 1665 1090.11628 0.0000
## 1666 1090.11628 0.0000
## 1667 1090.11628 0.0000
## 1668 1090.11628 0.0000
## 1669 1090.11628 0.0000
## 1670 1090.11628 0.0000
## 1671 1090.11628 0.0000
## 1672 1090.11628 0.0000
## 1673 1090.11628 0.0000
## 1674 1090.11628 0.0000
## 1675 1090.11628 0.0000
## 1676 1090.11628 0.0000
## 1677 1090.11628 0.0000
## 1678 1090.11628 0.0000
## 1679 1090.11628 0.0000
## 1680 1090.11628 0.0000
## 1681 505.81395 1369.1860
## 1682 505.81395 1369.1860
## 1683 505.81395 1369.1860
## 1684 505.81395 1369.1860
## 1685 505.81395 1369.1860
## 1686 505.81395 1369.1860
## 1687 505.81395 1369.1860
## 1688 505.81395 1369.1860
## 1689 505.81395 1369.1860
## 1690 505.81395 1369.1860
## 1691 505.81395 1369.1860
## 1692 505.81395 1369.1860
## 1693 505.81395 1369.1860
## 1694 505.81395 1369.1860
## 1695 505.81395 1369.1860
## 1696 505.81395 1369.1860
## 1697 505.81395 1369.1860
## 1698 505.81395 1369.1860
## 1699 505.81395 1369.1860
## 1700 505.81395 1369.1860
## 1701 505.81395 1369.1860
## 1702 505.81395 1369.1860
## 1703 505.81395 1369.1860
## 1704 505.81395 1369.1860
## 1705 0.00000 170.0581
## 1706 0.00000 170.0581
## 1707 0.00000 170.0581
## 1708 0.00000 170.0581
## 1709 0.00000 170.0581
## 1710 0.00000 170.0581
## 1711 0.00000 170.0581
## 1712 0.00000 170.0581
## 1713 0.00000 170.0581
## 1714 0.00000 170.0581
## 1715 0.00000 170.0581
## 1716 0.00000 170.0581
## 1717 0.00000 170.0581
## 1718 0.00000 170.0581
## 1719 0.00000 170.0581
## 1720 0.00000 170.0581
## 1721 0.00000 170.0581
## 1722 0.00000 170.0581
## 1723 0.00000 170.0581
## 1724 0.00000 170.0581
## 1725 0.00000 170.0581
## 1726 0.00000 170.0581
## 1727 0.00000 170.0581
## 1728 0.00000 170.0581
## 1729 7834.88372 3155.2326
## 1730 7834.88372 3155.2326
## 1731 7834.88372 3155.2326
## 1732 7834.88372 3155.2326
## 1733 7834.88372 3155.2326
## 1734 7834.88372 3155.2326
## 1735 7834.88372 3155.2326
## 1736 7834.88372 3155.2326
## 1737 7834.88372 3155.2326
## 1738 7834.88372 3155.2326
## 1739 7834.88372 3155.2326
## 1740 7834.88372 3155.2326
## 1741 7834.88372 3155.2326
## 1742 7834.88372 3155.2326
## 1743 7834.88372 3155.2326
## 1744 7834.88372 3155.2326
## 1745 7834.88372 3155.2326
## 1746 7834.88372 3155.2326
## 1747 7834.88372 3155.2326
## 1748 7834.88372 3155.2326
## 1749 7834.88372 3155.2326
## 1750 7834.88372 3155.2326
## 1751 7834.88372 3155.2326
## 1752 7834.88372 3155.2326
## 1753 1166.86047 6062.7907
## 1754 1166.86047 6062.7907
## 1755 1166.86047 6062.7907
## 1756 1166.86047 6062.7907
## 1757 1166.86047 6062.7907
## 1758 1166.86047 6062.7907
## 1759 1166.86047 6062.7907
## 1760 1166.86047 6062.7907
## 1761 1166.86047 6062.7907
## 1762 1166.86047 6062.7907
## 1763 1166.86047 6062.7907
## 1764 1166.86047 6062.7907
## 1765 1166.86047 6062.7907
## 1766 1166.86047 6062.7907
## 1767 1166.86047 6062.7907
## 1768 1166.86047 6062.7907
## 1769 1166.86047 6062.7907
## 1770 1166.86047 6062.7907
## 1771 1166.86047 6062.7907
## 1772 1166.86047 6062.7907
## 1773 1166.86047 6062.7907
## 1774 1166.86047 6062.7907
## 1775 1166.86047 6062.7907
## 1776 1166.86047 6062.7907
## 1777 1773.83721 5902.3256
## 1778 1773.83721 5902.3256
## 1779 1773.83721 5902.3256
## 1780 1773.83721 5902.3256
## 1781 1773.83721 5902.3256
## 1782 1773.83721 5902.3256
## 1783 1773.83721 5902.3256
## 1784 1773.83721 5902.3256
## 1785 1773.83721 5902.3256
## 1786 1773.83721 5902.3256
## 1787 1773.83721 5902.3256
## 1788 1773.83721 5902.3256
## 1789 1773.83721 5902.3256
## 1790 1773.83721 5902.3256
## 1791 1773.83721 5902.3256
## 1792 1773.83721 5902.3256
## 1793 1773.83721 5902.3256
## 1794 1773.83721 5902.3256
## 1795 1773.83721 5902.3256
## 1796 1773.83721 5902.3256
## 1797 1773.83721 5902.3256
## 1798 1773.83721 5902.3256
## 1799 1773.83721 5902.3256
## 1800 1773.83721 5902.3256
## 1801 0.00000 5853.4884
## 1802 0.00000 5853.4884
## 1803 0.00000 5853.4884
## 1804 0.00000 5853.4884
## 1805 0.00000 5853.4884
## 1806 0.00000 5853.4884
## 1807 0.00000 5853.4884
## 1808 0.00000 5853.4884
## 1809 0.00000 5853.4884
## 1810 0.00000 5853.4884
## 1811 0.00000 5853.4884
## 1812 0.00000 5853.4884
## 1813 0.00000 5853.4884
## 1814 0.00000 5853.4884
## 1815 0.00000 5853.4884
## 1816 0.00000 5853.4884
## 1817 0.00000 5853.4884
## 1818 0.00000 5853.4884
## 1819 0.00000 5853.4884
## 1820 0.00000 5853.4884
## 1821 0.00000 5853.4884
## 1822 0.00000 5853.4884
## 1823 0.00000 5853.4884
## 1824 0.00000 5853.4884
## 1825 0.00000 3235.4651
## 1826 0.00000 3235.4651
## 1827 0.00000 3235.4651
## 1828 0.00000 3235.4651
## 1829 0.00000 3235.4651
## 1830 0.00000 3235.4651
## 1831 0.00000 3235.4651
## 1832 0.00000 3235.4651
## 1833 0.00000 3235.4651
## 1834 0.00000 3235.4651
## 1835 0.00000 3235.4651
## 1836 0.00000 3235.4651
## 1837 0.00000 3235.4651
## 1838 0.00000 3235.4651
## 1839 0.00000 3235.4651
## 1840 0.00000 3235.4651
## 1841 0.00000 3235.4651
## 1842 0.00000 3235.4651
## 1843 0.00000 3235.4651
## 1844 0.00000 3235.4651
## 1845 0.00000 3235.4651
## 1846 0.00000 3235.4651
## 1847 0.00000 3235.4651
## 1848 0.00000 3235.4651
## 1849 0.00000 2581.3953
## 1850 0.00000 2581.3953
## 1851 0.00000 2581.3953
## 1852 0.00000 2581.3953
## 1853 0.00000 2581.3953
## 1854 0.00000 2581.3953
## 1855 0.00000 2581.3953
## 1856 0.00000 2581.3953
## 1857 0.00000 2581.3953
## 1858 0.00000 2581.3953
## 1859 0.00000 2581.3953
## 1860 0.00000 2581.3953
## 1861 0.00000 2581.3953
## 1862 0.00000 2581.3953
## 1863 0.00000 2581.3953
## 1864 0.00000 2581.3953
## 1865 0.00000 2581.3953
## 1866 0.00000 2581.3953
## 1867 0.00000 2581.3953
## 1868 0.00000 2581.3953
## 1869 0.00000 2581.3953
## 1870 0.00000 2581.3953
## 1871 0.00000 2581.3953
## 1872 0.00000 2581.3953
## 1873 1609.01163 1046.5116
## 1874 1609.01163 1046.5116
## 1875 1609.01163 1046.5116
## 1876 1609.01163 1046.5116
## 1877 1609.01163 1046.5116
## 1878 1609.01163 1046.5116
## 1879 1609.01163 1046.5116
## 1880 1609.01163 1046.5116
## 1881 1609.01163 1046.5116
## 1882 1609.01163 1046.5116
## 1883 1609.01163 1046.5116
## 1884 1609.01163 1046.5116
## 1885 1609.01163 1046.5116
## 1886 1609.01163 1046.5116
## 1887 1609.01163 1046.5116
## 1888 1609.01163 1046.5116
## 1889 1609.01163 1046.5116
## 1890 1609.01163 1046.5116
## 1891 1609.01163 1046.5116
## 1892 1609.01163 1046.5116
## 1893 1609.01163 1046.5116
## 1894 1609.01163 1046.5116
## 1895 1609.01163 1046.5116
## 1896 1609.01163 1046.5116
## 1897 837.20930 1090.1163
## 1898 837.20930 1090.1163
## 1899 837.20930 1090.1163
## 1900 837.20930 1090.1163
## 1901 837.20930 1090.1163
## 1902 837.20930 1090.1163
## 1903 837.20930 1090.1163
## 1904 837.20930 1090.1163
## 1905 837.20930 1090.1163
## 1906 837.20930 1090.1163
## 1907 837.20930 1090.1163
## 1908 837.20930 1090.1163
## 1909 837.20930 1090.1163
## 1910 837.20930 1090.1163
## 1911 837.20930 1090.1163
## 1912 837.20930 1090.1163
## 1913 837.20930 1090.1163
## 1914 837.20930 1090.1163
## 1915 837.20930 1090.1163
## 1916 837.20930 1090.1163
## 1917 837.20930 1090.1163
## 1918 837.20930 1090.1163
## 1919 837.20930 1090.1163
## 1920 837.20930 1090.1163
## 1921 7834.88372 3155.2326
## 1922 7834.88372 3155.2326
## 1923 7834.88372 3155.2326
## 1924 7834.88372 3155.2326
## 1925 7834.88372 3155.2326
## 1926 7834.88372 3155.2326
## 1927 7834.88372 3155.2326
## 1928 7834.88372 3155.2326
## 1929 7834.88372 3155.2326
## 1930 7834.88372 3155.2326
## 1931 7834.88372 3155.2326
## 1932 7834.88372 3155.2326
## 1933 7834.88372 3155.2326
## 1934 7834.88372 3155.2326
## 1935 7834.88372 3155.2326
## 1936 7834.88372 3155.2326
## 1937 7834.88372 3155.2326
## 1938 7834.88372 3155.2326
## 1939 7834.88372 3155.2326
## 1940 7834.88372 3155.2326
## 1941 7834.88372 3155.2326
## 1942 7834.88372 3155.2326
## 1943 7834.88372 3155.2326
## 1944 7834.88372 3155.2326
## 1945 2180.23256 3579.0698
## 1946 2180.23256 3579.0698
## 1947 2180.23256 3579.0698
## 1948 2180.23256 3579.0698
## 1949 2180.23256 3579.0698
## 1950 2180.23256 3579.0698
## 1951 2180.23256 3579.0698
## 1952 2180.23256 3579.0698
## 1953 2180.23256 3579.0698
## 1954 2180.23256 3579.0698
## 1955 2180.23256 3579.0698
## 1956 2180.23256 3579.0698
## 1957 2180.23256 3579.0698
## 1958 2180.23256 3579.0698
## 1959 2180.23256 3579.0698
## 1960 2180.23256 3579.0698
## 1961 2180.23256 3579.0698
## 1962 2180.23256 3579.0698
## 1963 2180.23256 3579.0698
## 1964 2180.23256 3579.0698
## 1965 2180.23256 3579.0698
## 1966 2180.23256 3579.0698
## 1967 2180.23256 3579.0698
## 1968 2180.23256 3579.0698
## 1969 0.00000 1381.3953
## 1970 0.00000 1381.3953
## 1971 0.00000 1381.3953
## 1972 0.00000 1381.3953
## 1973 0.00000 1381.3953
## 1974 0.00000 1381.3953
## 1975 0.00000 1381.3953
## 1976 0.00000 1381.3953
## 1977 0.00000 1381.3953
## 1978 0.00000 1381.3953
## 1979 0.00000 1381.3953
## 1980 0.00000 1381.3953
## 1981 0.00000 1381.3953
## 1982 0.00000 1381.3953
## 1983 0.00000 1381.3953
## 1984 0.00000 1381.3953
## 1985 0.00000 1381.3953
## 1986 0.00000 1381.3953
## 1987 0.00000 1381.3953
## 1988 0.00000 1381.3953
## 1989 0.00000 1381.3953
## 1990 0.00000 1381.3953
## 1991 0.00000 1381.3953
## 1992 0.00000 1381.3953
## 1993 0.00000 5084.3023
## 1994 0.00000 5084.3023
## 1995 0.00000 5084.3023
## 1996 0.00000 5084.3023
## 1997 0.00000 5084.3023
## 1998 0.00000 5084.3023
## 1999 0.00000 5084.3023
## 2000 0.00000 5084.3023
## 2001 0.00000 5084.3023
## 2002 0.00000 5084.3023
## 2003 0.00000 5084.3023
## 2004 0.00000 5084.3023
## 2005 0.00000 5084.3023
## 2006 0.00000 5084.3023
## 2007 0.00000 5084.3023
## 2008 0.00000 5084.3023
## 2009 0.00000 5084.3023
## 2010 0.00000 5084.3023
## 2011 0.00000 5084.3023
## 2012 0.00000 5084.3023
## 2013 0.00000 5084.3023
## 2014 0.00000 5084.3023
## 2015 0.00000 5084.3023
## 2016 0.00000 5084.3023
## 2017 650.58140 5040.6977
## 2018 650.58140 5040.6977
## 2019 650.58140 5040.6977
## 2020 650.58140 5040.6977
## 2021 650.58140 5040.6977
## 2022 650.58140 5040.6977
## 2023 650.58140 5040.6977
## 2024 650.58140 5040.6977
## 2025 650.58140 5040.6977
## 2026 650.58140 5040.6977
## 2027 650.58140 5040.6977
## 2028 650.58140 5040.6977
## 2029 650.58140 5040.6977
## 2030 650.58140 5040.6977
## 2031 650.58140 5040.6977
## 2032 650.58140 5040.6977
## 2033 650.58140 5040.6977
## 2034 650.58140 5040.6977
## 2035 650.58140 5040.6977
## 2036 650.58140 5040.6977
## 2037 650.58140 5040.6977
## 2038 650.58140 5040.6977
## 2039 650.58140 5040.6977
## 2040 650.58140 5040.6977
## 2041 0.00000 2956.3953
## 2042 0.00000 2956.3953
## 2043 0.00000 2956.3953
## 2044 0.00000 2956.3953
## 2045 0.00000 2956.3953
## 2046 0.00000 2956.3953
## 2047 0.00000 2956.3953
## 2048 0.00000 2956.3953
## 2049 0.00000 2956.3953
## 2050 0.00000 2956.3953
## 2051 0.00000 2956.3953
## 2052 0.00000 2956.3953
## 2053 0.00000 2956.3953
## 2054 0.00000 2956.3953
## 2055 0.00000 2956.3953
## 2056 0.00000 2956.3953
## 2057 0.00000 2956.3953
## 2058 0.00000 2956.3953
## 2059 0.00000 2956.3953
## 2060 0.00000 2956.3953
## 2061 0.00000 2956.3953
## 2062 0.00000 2956.3953
## 2063 0.00000 2956.3953
## 2064 0.00000 2956.3953
## 2065 0.00000 662.7907
## 2066 0.00000 662.7907
## 2067 0.00000 662.7907
## 2068 0.00000 662.7907
## 2069 0.00000 662.7907
## 2070 0.00000 662.7907
## 2071 0.00000 662.7907
## 2072 0.00000 662.7907
## 2073 0.00000 662.7907
## 2074 0.00000 662.7907
## 2075 0.00000 662.7907
## 2076 0.00000 662.7907
## 2077 0.00000 662.7907
## 2078 0.00000 662.7907
## 2079 0.00000 662.7907
## 2080 0.00000 662.7907
## 2081 0.00000 662.7907
## 2082 0.00000 662.7907
## 2083 0.00000 662.7907
## 2084 0.00000 662.7907
## 2085 0.00000 662.7907
## 2086 0.00000 662.7907
## 2087 0.00000 662.7907
## 2088 0.00000 662.7907
## 2089 1090.11628 2428.7791
## 2090 1090.11628 2428.7791
## 2091 1090.11628 2428.7791
## 2092 1090.11628 2428.7791
## 2093 1090.11628 2428.7791
## 2094 1090.11628 2428.7791
## 2095 1090.11628 2428.7791
## 2096 1090.11628 2428.7791
## 2097 1090.11628 2428.7791
## 2098 1090.11628 2428.7791
## 2099 1090.11628 2428.7791
## 2100 1090.11628 2428.7791
## 2101 1090.11628 2428.7791
## 2102 1090.11628 2428.7791
## 2103 1090.11628 2428.7791
## 2104 1090.11628 2428.7791
## 2105 1090.11628 2428.7791
## 2106 1090.11628 2428.7791
## 2107 1090.11628 2428.7791
## 2108 1090.11628 2428.7791
## 2109 1090.11628 2428.7791
## 2110 1090.11628 2428.7791
## 2111 1090.11628 2428.7791
## 2112 1090.11628 2428.7791
## 2113 7834.88372 3155.2326
## 2114 7834.88372 3155.2326
## 2115 7834.88372 3155.2326
## 2116 7834.88372 3155.2326
## 2117 7834.88372 3155.2326
## 2118 7834.88372 3155.2326
## 2119 7834.88372 3155.2326
## 2120 7834.88372 3155.2326
## 2121 7834.88372 3155.2326
## 2122 7834.88372 3155.2326
## 2123 7834.88372 3155.2326
## 2124 7834.88372 3155.2326
## 2125 7834.88372 3155.2326
## 2126 7834.88372 3155.2326
## 2127 7834.88372 3155.2326
## 2128 7834.88372 3155.2326
## 2129 7834.88372 3155.2326
## 2130 7834.88372 3155.2326
## 2131 7834.88372 3155.2326
## 2132 7834.88372 3155.2326
## 2133 7834.88372 3155.2326
## 2134 7834.88372 3155.2326
## 2135 7834.88372 3155.2326
## 2136 7834.88372 3155.2326
## 2137 1063.95349 7407.5581
## 2138 1063.95349 7407.5581
## 2139 1063.95349 7407.5581
## 2140 1063.95349 7407.5581
## 2141 1063.95349 7407.5581
## 2142 1063.95349 7407.5581
## 2143 1063.95349 7407.5581
## 2144 1063.95349 7407.5581
## 2145 1063.95349 7407.5581
## 2146 1063.95349 7407.5581
## 2147 1063.95349 7407.5581
## 2148 1063.95349 7407.5581
## 2149 1063.95349 7407.5581
## 2150 1063.95349 7407.5581
## 2151 1063.95349 7407.5581
## 2152 1063.95349 7407.5581
## 2153 1063.95349 7407.5581
## 2154 1063.95349 7407.5581
## 2155 1063.95349 7407.5581
## 2156 1063.95349 7407.5581
## 2157 1063.95349 7407.5581
## 2158 1063.95349 7407.5581
## 2159 1063.95349 7407.5581
## 2160 1063.95349 7407.5581
## 2161 0.00000 3134.3023
## 2162 0.00000 3134.3023
## 2163 0.00000 3134.3023
## 2164 0.00000 3134.3023
## 2165 0.00000 3134.3023
## 2166 0.00000 3134.3023
## 2167 0.00000 3134.3023
## 2168 0.00000 3134.3023
## 2169 0.00000 3134.3023
## 2170 0.00000 3134.3023
## 2171 0.00000 3134.3023
## 2172 0.00000 3134.3023
## 2173 0.00000 3134.3023
## 2174 0.00000 3134.3023
## 2175 0.00000 3134.3023
## 2176 0.00000 3134.3023
## 2177 0.00000 3134.3023
## 2178 0.00000 3134.3023
## 2179 0.00000 3134.3023
## 2180 0.00000 3134.3023
## 2181 0.00000 3134.3023
## 2182 0.00000 3134.3023
## 2183 0.00000 3134.3023
## 2184 0.00000 3134.3023
## 2185 1438.95349 4988.3721
## 2186 1438.95349 4988.3721
## 2187 1438.95349 4988.3721
## 2188 1438.95349 4988.3721
## 2189 1438.95349 4988.3721
## 2190 1438.95349 4988.3721
## 2191 1438.95349 4988.3721
## 2192 1438.95349 4988.3721
## 2193 1438.95349 4988.3721
## 2194 1438.95349 4988.3721
## 2195 1438.95349 4988.3721
## 2196 1438.95349 4988.3721
## 2197 1438.95349 4988.3721
## 2198 1438.95349 4988.3721
## 2199 1438.95349 4988.3721
## 2200 1438.95349 4988.3721
## 2201 1438.95349 4988.3721
## 2202 1438.95349 4988.3721
## 2203 1438.95349 4988.3721
## 2204 1438.95349 4988.3721
## 2205 1438.95349 4988.3721
## 2206 1438.95349 4988.3721
## 2207 1438.95349 4988.3721
## 2208 1438.95349 4988.3721
## 2209 650.58140 4334.3023
## 2210 650.58140 4334.3023
## 2211 650.58140 4334.3023
## 2212 650.58140 4334.3023
## 2213 650.58140 4334.3023
## 2214 650.58140 4334.3023
## 2215 650.58140 4334.3023
## 2216 650.58140 4334.3023
## 2217 650.58140 4334.3023
## 2218 650.58140 4334.3023
## 2219 650.58140 4334.3023
## 2220 650.58140 4334.3023
## 2221 650.58140 4334.3023
## 2222 650.58140 4334.3023
## 2223 650.58140 4334.3023
## 2224 650.58140 4334.3023
## 2225 650.58140 4334.3023
## 2226 650.58140 4334.3023
## 2227 650.58140 4334.3023
## 2228 650.58140 4334.3023
## 2229 650.58140 4334.3023
## 2230 650.58140 4334.3023
## 2231 650.58140 4334.3023
## 2232 650.58140 4334.3023
## 2233 0.00000 1456.3953
## 2234 0.00000 1456.3953
## 2235 0.00000 1456.3953
## 2236 0.00000 1456.3953
## 2237 0.00000 1456.3953
## 2238 0.00000 1456.3953
## 2239 0.00000 1456.3953
## 2240 0.00000 1456.3953
## 2241 0.00000 1456.3953
## 2242 0.00000 1456.3953
## 2243 0.00000 1456.3953
## 2244 0.00000 1456.3953
## 2245 0.00000 1456.3953
## 2246 0.00000 1456.3953
## 2247 0.00000 1456.3953
## 2248 0.00000 1456.3953
## 2249 0.00000 1456.3953
## 2250 0.00000 1456.3953
## 2251 0.00000 1456.3953
## 2252 0.00000 1456.3953
## 2253 0.00000 1456.3953
## 2254 0.00000 1456.3953
## 2255 0.00000 1456.3953
## 2256 0.00000 1456.3953
## 2257 1312.50000 1059.5930
## 2258 1312.50000 1059.5930
## 2259 1312.50000 1059.5930
## 2260 1312.50000 1059.5930
## 2261 1312.50000 1059.5930
## 2262 1312.50000 1059.5930
## 2263 1312.50000 1059.5930
## 2264 1312.50000 1059.5930
## 2265 1312.50000 1059.5930
## 2266 1312.50000 1059.5930
## 2267 1312.50000 1059.5930
## 2268 1312.50000 1059.5930
## 2269 1312.50000 1059.5930
## 2270 1312.50000 1059.5930
## 2271 1312.50000 1059.5930
## 2272 1312.50000 1059.5930
## 2273 1312.50000 1059.5930
## 2274 1312.50000 1059.5930
## 2275 1312.50000 1059.5930
## 2276 1312.50000 1059.5930
## 2277 1312.50000 1059.5930
## 2278 1312.50000 1059.5930
## 2279 1312.50000 1059.5930
## 2280 1312.50000 1059.5930
## 2281 1962.20930 1360.4651
## 2282 1962.20930 1360.4651
## 2283 1962.20930 1360.4651
## 2284 1962.20930 1360.4651
## 2285 1962.20930 1360.4651
## 2286 1962.20930 1360.4651
## 2287 1962.20930 1360.4651
## 2288 1962.20930 1360.4651
## 2289 1962.20930 1360.4651
## 2290 1962.20930 1360.4651
## 2291 1962.20930 1360.4651
## 2292 1962.20930 1360.4651
## 2293 1962.20930 1360.4651
## 2294 1962.20930 1360.4651
## 2295 1962.20930 1360.4651
## 2296 1962.20930 1360.4651
## 2297 1962.20930 1360.4651
## 2298 1962.20930 1360.4651
## 2299 1962.20930 1360.4651
## 2300 1962.20930 1360.4651
## 2301 1962.20930 1360.4651
## 2302 1962.20930 1360.4651
## 2303 1962.20930 1360.4651
## 2304 1962.20930 1360.4651
## 2305 7834.88372 3155.2326
## 2306 7834.88372 3155.2326
## 2307 7834.88372 3155.2326
## 2308 7834.88372 3155.2326
## 2309 7834.88372 3155.2326
## 2310 7834.88372 3155.2326
## 2311 7834.88372 3155.2326
## 2312 7834.88372 3155.2326
## 2313 7834.88372 3155.2326
## 2314 7834.88372 3155.2326
## 2315 7834.88372 3155.2326
## 2316 7834.88372 3155.2326
## 2317 7834.88372 3155.2326
## 2318 7834.88372 3155.2326
## 2319 7834.88372 3155.2326
## 2320 7834.88372 3155.2326
## 2321 7834.88372 3155.2326
## 2322 7834.88372 3155.2326
## 2323 7834.88372 3155.2326
## 2324 7834.88372 3155.2326
## 2325 7834.88372 3155.2326
## 2326 7834.88372 3155.2326
## 2327 7834.88372 3155.2326
## 2328 7834.88372 3155.2326
## 2329 1386.62791 1285.4651
## 2330 1386.62791 1285.4651
## 2331 1386.62791 1285.4651
## 2332 1386.62791 1285.4651
## 2333 1386.62791 1285.4651
## 2334 1386.62791 1285.4651
## 2335 1386.62791 1285.4651
## 2336 1386.62791 1285.4651
## 2337 1386.62791 1285.4651
## 2338 1386.62791 1285.4651
## 2339 1386.62791 1285.4651
## 2340 1386.62791 1285.4651
## 2341 1386.62791 1285.4651
## 2342 1386.62791 1285.4651
## 2343 1386.62791 1285.4651
## 2344 1386.62791 1285.4651
## 2345 1386.62791 1285.4651
## 2346 1386.62791 1285.4651
## 2347 1386.62791 1285.4651
## 2348 1386.62791 1285.4651
## 2349 1386.62791 1285.4651
## 2350 1386.62791 1285.4651
## 2351 1386.62791 1285.4651
## 2352 1386.62791 1285.4651
## 2353 0.00000 6648.8372
## 2354 0.00000 6648.8372
## 2355 0.00000 6648.8372
## 2356 0.00000 6648.8372
## 2357 0.00000 6648.8372
## 2358 0.00000 6648.8372
## 2359 0.00000 6648.8372
## 2360 0.00000 6648.8372
## 2361 0.00000 6648.8372
## 2362 0.00000 6648.8372
## 2363 0.00000 6648.8372
## 2364 0.00000 6648.8372
## 2365 0.00000 6648.8372
## 2366 0.00000 6648.8372
## 2367 0.00000 6648.8372
## 2368 0.00000 6648.8372
## 2369 0.00000 6648.8372
## 2370 0.00000 6648.8372
## 2371 0.00000 6648.8372
## 2372 0.00000 6648.8372
## 2373 0.00000 6648.8372
## 2374 0.00000 6648.8372
## 2375 0.00000 6648.8372
## 2376 0.00000 6648.8372
## 2377 837.20930 3453.4884
## 2378 837.20930 3453.4884
## 2379 837.20930 3453.4884
## 2380 837.20930 3453.4884
## 2381 837.20930 3453.4884
## 2382 837.20930 3453.4884
## 2383 837.20930 3453.4884
## 2384 837.20930 3453.4884
## 2385 837.20930 3453.4884
## 2386 837.20930 3453.4884
## 2387 837.20930 3453.4884
## 2388 837.20930 3453.4884
## 2389 837.20930 3453.4884
## 2390 837.20930 3453.4884
## 2391 837.20930 3453.4884
## 2392 837.20930 3453.4884
## 2393 837.20930 3453.4884
## 2394 837.20930 3453.4884
## 2395 837.20930 3453.4884
## 2396 837.20930 3453.4884
## 2397 837.20930 3453.4884
## 2398 837.20930 3453.4884
## 2399 837.20930 3453.4884
## 2400 837.20930 3453.4884
## 2401 650.58140 1936.0465
## 2402 650.58140 1936.0465
## 2403 650.58140 1936.0465
## 2404 650.58140 1936.0465
## 2405 650.58140 1936.0465
## 2406 650.58140 1936.0465
## 2407 650.58140 1936.0465
## 2408 650.58140 1936.0465
## 2409 650.58140 1936.0465
## 2410 650.58140 1936.0465
## 2411 650.58140 1936.0465
## 2412 650.58140 1936.0465
## 2413 650.58140 1936.0465
## 2414 650.58140 1936.0465
## 2415 650.58140 1936.0465
## 2416 650.58140 1936.0465
## 2417 650.58140 1936.0465
## 2418 650.58140 1936.0465
## 2419 650.58140 1936.0465
## 2420 650.58140 1936.0465
## 2421 650.58140 1936.0465
## 2422 650.58140 1936.0465
## 2423 650.58140 1936.0465
## 2424 650.58140 1936.0465
## 2425 0.00000 383.7209
## 2426 0.00000 383.7209
## 2427 0.00000 383.7209
## 2428 0.00000 383.7209
## 2429 0.00000 383.7209
## 2430 0.00000 383.7209
## 2431 0.00000 383.7209
## 2432 0.00000 383.7209
## 2433 0.00000 383.7209
## 2434 0.00000 383.7209
## 2435 0.00000 383.7209
## 2436 0.00000 383.7209
## 2437 0.00000 383.7209
## 2438 0.00000 383.7209
## 2439 0.00000 383.7209
## 2440 0.00000 383.7209
## 2441 0.00000 383.7209
## 2442 0.00000 383.7209
## 2443 0.00000 383.7209
## 2444 0.00000 383.7209
## 2445 0.00000 383.7209
## 2446 0.00000 383.7209
## 2447 0.00000 383.7209
## 2448 0.00000 383.7209
## 2449 859.01163 0.0000
## 2450 859.01163 0.0000
## 2451 859.01163 0.0000
## 2452 859.01163 0.0000
## 2453 859.01163 0.0000
## 2454 859.01163 0.0000
## 2455 859.01163 0.0000
## 2456 859.01163 0.0000
## 2457 859.01163 0.0000
## 2458 859.01163 0.0000
## 2459 859.01163 0.0000
## 2460 859.01163 0.0000
## 2461 859.01163 0.0000
## 2462 859.01163 0.0000
## 2463 859.01163 0.0000
## 2464 859.01163 0.0000
## 2465 859.01163 0.0000
## 2466 859.01163 0.0000
## 2467 859.01163 0.0000
## 2468 859.01163 0.0000
## 2469 859.01163 0.0000
## 2470 859.01163 0.0000
## 2471 859.01163 0.0000
## 2472 859.01163 0.0000
## 2473 1090.11628 4469.4767
## 2474 1090.11628 4469.4767
## 2475 1090.11628 4469.4767
## 2476 1090.11628 4469.4767
## 2477 1090.11628 4469.4767
## 2478 1090.11628 4469.4767
## 2479 1090.11628 4469.4767
## 2480 1090.11628 4469.4767
## 2481 1090.11628 4469.4767
## 2482 1090.11628 4469.4767
## 2483 1090.11628 4469.4767
## 2484 1090.11628 4469.4767
## 2485 1090.11628 4469.4767
## 2486 1090.11628 4469.4767
## 2487 1090.11628 4469.4767
## 2488 1090.11628 4469.4767
## 2489 1090.11628 4469.4767
## 2490 1090.11628 4469.4767
## 2491 1090.11628 4469.4767
## 2492 1090.11628 4469.4767
## 2493 1090.11628 4469.4767
## 2494 1090.11628 4469.4767
## 2495 1090.11628 4469.4767
## 2496 1090.11628 4469.4767
## 2497 7834.88372 3155.2326
## 2498 7834.88372 3155.2326
## 2499 7834.88372 3155.2326
## 2500 7834.88372 3155.2326
## 2501 7834.88372 3155.2326
## 2502 7834.88372 3155.2326
## 2503 7834.88372 3155.2326
## 2504 7834.88372 3155.2326
## 2505 7834.88372 3155.2326
## 2506 7834.88372 3155.2326
## 2507 7834.88372 3155.2326
## 2508 7834.88372 3155.2326
## 2509 7834.88372 3155.2326
## 2510 7834.88372 3155.2326
## 2511 7834.88372 3155.2326
## 2512 7834.88372 3155.2326
## 2513 7834.88372 3155.2326
## 2514 7834.88372 3155.2326
## 2515 7834.88372 3155.2326
## 2516 7834.88372 3155.2326
## 2517 7834.88372 3155.2326
## 2518 7834.88372 3155.2326
## 2519 7834.88372 3155.2326
## 2520 7834.88372 3155.2326
## 2521 0.00000 1512.2093
## 2522 0.00000 1512.2093
## 2523 0.00000 1512.2093
## 2524 0.00000 1512.2093
## 2525 0.00000 1512.2093
## 2526 0.00000 1512.2093
## 2527 0.00000 1512.2093
## 2528 0.00000 1512.2093
## 2529 0.00000 1512.2093
## 2530 0.00000 1512.2093
## 2531 0.00000 1512.2093
## 2532 0.00000 1512.2093
## 2533 0.00000 1512.2093
## 2534 0.00000 1512.2093
## 2535 0.00000 1512.2093
## 2536 0.00000 1512.2093
## 2537 0.00000 1512.2093
## 2538 0.00000 1512.2093
## 2539 0.00000 1512.2093
## 2540 0.00000 1512.2093
## 2541 0.00000 1512.2093
## 2542 0.00000 1512.2093
## 2543 0.00000 1512.2093
## 2544 0.00000 1512.2093
## 2545 0.00000 8297.0930
## 2546 0.00000 8297.0930
## 2547 0.00000 8297.0930
## 2548 0.00000 8297.0930
## 2549 0.00000 8297.0930
## 2550 0.00000 8297.0930
## 2551 0.00000 8297.0930
## 2552 0.00000 8297.0930
## 2553 0.00000 8297.0930
## 2554 0.00000 8297.0930
## 2555 0.00000 8297.0930
## 2556 0.00000 8297.0930
## 2557 0.00000 8297.0930
## 2558 0.00000 8297.0930
## 2559 0.00000 8297.0930
## 2560 0.00000 8297.0930
## 2561 0.00000 8297.0930
## 2562 0.00000 8297.0930
## 2563 0.00000 8297.0930
## 2564 0.00000 8297.0930
## 2565 0.00000 8297.0930
## 2566 0.00000 8297.0930
## 2567 0.00000 8297.0930
## 2568 0.00000 8297.0930
## 2569 0.00000 1090.1163
## 2570 0.00000 1090.1163
## 2571 0.00000 1090.1163
## 2572 0.00000 1090.1163
## 2573 0.00000 1090.1163
## 2574 0.00000 1090.1163
## 2575 0.00000 1090.1163
## 2576 0.00000 1090.1163
## 2577 0.00000 1090.1163
## 2578 0.00000 1090.1163
## 2579 0.00000 1090.1163
## 2580 0.00000 1090.1163
## 2581 0.00000 1090.1163
## 2582 0.00000 1090.1163
## 2583 0.00000 1090.1163
## 2584 0.00000 1090.1163
## 2585 0.00000 1090.1163
## 2586 0.00000 1090.1163
## 2587 0.00000 1090.1163
## 2588 0.00000 1090.1163
## 2589 0.00000 1090.1163
## 2590 0.00000 1090.1163
## 2591 0.00000 1090.1163
## 2592 0.00000 1090.1163
## 2593 938.37209 5581.3953
## 2594 938.37209 5581.3953
## 2595 938.37209 5581.3953
## 2596 938.37209 5581.3953
## 2597 938.37209 5581.3953
## 2598 938.37209 5581.3953
## 2599 938.37209 5581.3953
## 2600 938.37209 5581.3953
## 2601 938.37209 5581.3953
## 2602 938.37209 5581.3953
## 2603 938.37209 5581.3953
## 2604 938.37209 5581.3953
## 2605 938.37209 5581.3953
## 2606 938.37209 5581.3953
## 2607 938.37209 5581.3953
## 2608 938.37209 5581.3953
## 2609 938.37209 5581.3953
## 2610 938.37209 5581.3953
## 2611 938.37209 5581.3953
## 2612 938.37209 5581.3953
## 2613 938.37209 5581.3953
## 2614 938.37209 5581.3953
## 2615 938.37209 5581.3953
## 2616 938.37209 5581.3953
## 2617 1090.11628 0.0000
## 2618 1090.11628 0.0000
## 2619 1090.11628 0.0000
## 2620 1090.11628 0.0000
## 2621 1090.11628 0.0000
## 2622 1090.11628 0.0000
## 2623 1090.11628 0.0000
## 2624 1090.11628 0.0000
## 2625 1090.11628 0.0000
## 2626 1090.11628 0.0000
## 2627 1090.11628 0.0000
## 2628 1090.11628 0.0000
## 2629 1090.11628 0.0000
## 2630 1090.11628 0.0000
## 2631 1090.11628 0.0000
## 2632 1090.11628 0.0000
## 2633 1090.11628 0.0000
## 2634 1090.11628 0.0000
## 2635 1090.11628 0.0000
## 2636 1090.11628 0.0000
## 2637 1090.11628 0.0000
## 2638 1090.11628 0.0000
## 2639 1090.11628 0.0000
## 2640 1090.11628 0.0000
## 2641 505.81395 1369.1860
## 2642 505.81395 1369.1860
## 2643 505.81395 1369.1860
## 2644 505.81395 1369.1860
## 2645 505.81395 1369.1860
## 2646 505.81395 1369.1860
## 2647 505.81395 1369.1860
## 2648 505.81395 1369.1860
## 2649 505.81395 1369.1860
## 2650 505.81395 1369.1860
## 2651 505.81395 1369.1860
## 2652 505.81395 1369.1860
## 2653 505.81395 1369.1860
## 2654 505.81395 1369.1860
## 2655 505.81395 1369.1860
## 2656 505.81395 1369.1860
## 2657 505.81395 1369.1860
## 2658 505.81395 1369.1860
## 2659 505.81395 1369.1860
## 2660 505.81395 1369.1860
## 2661 505.81395 1369.1860
## 2662 505.81395 1369.1860
## 2663 505.81395 1369.1860
## 2664 505.81395 1369.1860
## 2665 0.00000 170.0581
## 2666 0.00000 170.0581
## 2667 0.00000 170.0581
## 2668 0.00000 170.0581
## 2669 0.00000 170.0581
## 2670 0.00000 170.0581
## 2671 0.00000 170.0581
## 2672 0.00000 170.0581
## 2673 0.00000 170.0581
## 2674 0.00000 170.0581
## 2675 0.00000 170.0581
## 2676 0.00000 170.0581
## 2677 0.00000 170.0581
## 2678 0.00000 170.0581
## 2679 0.00000 170.0581
## 2680 0.00000 170.0581
## 2681 0.00000 170.0581
## 2682 0.00000 170.0581
## 2683 0.00000 170.0581
## 2684 0.00000 170.0581
## 2685 0.00000 170.0581
## 2686 0.00000 170.0581
## 2687 0.00000 170.0581
## 2688 0.00000 170.0581
## 2689 7834.88372 3155.2326
## 2690 7834.88372 3155.2326
## 2691 7834.88372 3155.2326
## 2692 7834.88372 3155.2326
## 2693 7834.88372 3155.2326
## 2694 7834.88372 3155.2326
## 2695 7834.88372 3155.2326
## 2696 7834.88372 3155.2326
## 2697 7834.88372 3155.2326
## 2698 7834.88372 3155.2326
## 2699 7834.88372 3155.2326
## 2700 7834.88372 3155.2326
## 2701 7834.88372 3155.2326
## 2702 7834.88372 3155.2326
## 2703 7834.88372 3155.2326
## 2704 7834.88372 3155.2326
## 2705 7834.88372 3155.2326
## 2706 7834.88372 3155.2326
## 2707 7834.88372 3155.2326
## 2708 7834.88372 3155.2326
## 2709 7834.88372 3155.2326
## 2710 7834.88372 3155.2326
## 2711 7834.88372 3155.2326
## 2712 7834.88372 3155.2326
## 2713 1090.11628 5837.7907
## 2714 1090.11628 5837.7907
## 2715 1090.11628 5837.7907
## 2716 1090.11628 5837.7907
## 2717 1090.11628 5837.7907
## 2718 1090.11628 5837.7907
## 2719 1090.11628 5837.7907
## 2720 1090.11628 5837.7907
## 2721 1090.11628 5837.7907
## 2722 1090.11628 5837.7907
## 2723 1090.11628 5837.7907
## 2724 1090.11628 5837.7907
## 2725 1090.11628 5837.7907
## 2726 1090.11628 5837.7907
## 2727 1090.11628 5837.7907
## 2728 1090.11628 5837.7907
## 2729 1090.11628 5837.7907
## 2730 1090.11628 5837.7907
## 2731 1090.11628 5837.7907
## 2732 1090.11628 5837.7907
## 2733 1090.11628 5837.7907
## 2734 1090.11628 5837.7907
## 2735 1090.11628 5837.7907
## 2736 1090.11628 5837.7907
## 2737 0.00000 5724.4186
## 2738 0.00000 5724.4186
## 2739 0.00000 5724.4186
## 2740 0.00000 5724.4186
## 2741 0.00000 5724.4186
## 2742 0.00000 5724.4186
## 2743 0.00000 5724.4186
## 2744 0.00000 5724.4186
## 2745 0.00000 5724.4186
## 2746 0.00000 5724.4186
## 2747 0.00000 5724.4186
## 2748 0.00000 5724.4186
## 2749 0.00000 5724.4186
## 2750 0.00000 5724.4186
## 2751 0.00000 5724.4186
## 2752 0.00000 5724.4186
## 2753 0.00000 5724.4186
## 2754 0.00000 5724.4186
## 2755 0.00000 5724.4186
## 2756 0.00000 5724.4186
## 2757 0.00000 5724.4186
## 2758 0.00000 5724.4186
## 2759 0.00000 5724.4186
## 2760 0.00000 5724.4186
## 2761 0.00000 5293.6047
## 2762 0.00000 5293.6047
## 2763 0.00000 5293.6047
## 2764 0.00000 5293.6047
## 2765 0.00000 5293.6047
## 2766 0.00000 5293.6047
## 2767 0.00000 5293.6047
## 2768 0.00000 5293.6047
## 2769 0.00000 5293.6047
## 2770 0.00000 5293.6047
## 2771 0.00000 5293.6047
## 2772 0.00000 5293.6047
## 2773 0.00000 5293.6047
## 2774 0.00000 5293.6047
## 2775 0.00000 5293.6047
## 2776 0.00000 5293.6047
## 2777 0.00000 5293.6047
## 2778 0.00000 5293.6047
## 2779 0.00000 5293.6047
## 2780 0.00000 5293.6047
## 2781 0.00000 5293.6047
## 2782 0.00000 5293.6047
## 2783 0.00000 5293.6047
## 2784 0.00000 5293.6047
## 2785 650.58140 3453.4884
## 2786 650.58140 3453.4884
## 2787 650.58140 3453.4884
## 2788 650.58140 3453.4884
## 2789 650.58140 3453.4884
## 2790 650.58140 3453.4884
## 2791 650.58140 3453.4884
## 2792 650.58140 3453.4884
## 2793 650.58140 3453.4884
## 2794 650.58140 3453.4884
## 2795 650.58140 3453.4884
## 2796 650.58140 3453.4884
## 2797 650.58140 3453.4884
## 2798 650.58140 3453.4884
## 2799 650.58140 3453.4884
## 2800 650.58140 3453.4884
## 2801 650.58140 3453.4884
## 2802 650.58140 3453.4884
## 2803 650.58140 3453.4884
## 2804 650.58140 3453.4884
## 2805 650.58140 3453.4884
## 2806 650.58140 3453.4884
## 2807 650.58140 3453.4884
## 2808 650.58140 3453.4884
## 2809 0.00000 2581.3953
## 2810 0.00000 2581.3953
## 2811 0.00000 2581.3953
## 2812 0.00000 2581.3953
## 2813 0.00000 2581.3953
## 2814 0.00000 2581.3953
## 2815 0.00000 2581.3953
## 2816 0.00000 2581.3953
## 2817 0.00000 2581.3953
## 2818 0.00000 2581.3953
## 2819 0.00000 2581.3953
## 2820 0.00000 2581.3953
## 2821 0.00000 2581.3953
## 2822 0.00000 2581.3953
## 2823 0.00000 2581.3953
## 2824 0.00000 2581.3953
## 2825 0.00000 2581.3953
## 2826 0.00000 2581.3953
## 2827 0.00000 2581.3953
## 2828 0.00000 2581.3953
## 2829 0.00000 2581.3953
## 2830 0.00000 2581.3953
## 2831 0.00000 2581.3953
## 2832 0.00000 2581.3953
## 2833 1609.01163 1046.5116
## 2834 1609.01163 1046.5116
## 2835 1609.01163 1046.5116
## 2836 1609.01163 1046.5116
## 2837 1609.01163 1046.5116
## 2838 1609.01163 1046.5116
## 2839 1609.01163 1046.5116
## 2840 1609.01163 1046.5116
## 2841 1609.01163 1046.5116
## 2842 1609.01163 1046.5116
## 2843 1609.01163 1046.5116
## 2844 1609.01163 1046.5116
## 2845 1609.01163 1046.5116
## 2846 1609.01163 1046.5116
## 2847 1609.01163 1046.5116
## 2848 1609.01163 1046.5116
## 2849 1609.01163 1046.5116
## 2850 1609.01163 1046.5116
## 2851 1609.01163 1046.5116
## 2852 1609.01163 1046.5116
## 2853 1609.01163 1046.5116
## 2854 1609.01163 1046.5116
## 2855 1609.01163 1046.5116
## 2856 1609.01163 1046.5116
## 2857 837.20930 1090.1163
## 2858 837.20930 1090.1163
## 2859 837.20930 1090.1163
## 2860 837.20930 1090.1163
## 2861 837.20930 1090.1163
## 2862 837.20930 1090.1163
## 2863 837.20930 1090.1163
## 2864 837.20930 1090.1163
## 2865 837.20930 1090.1163
## 2866 837.20930 1090.1163
## 2867 837.20930 1090.1163
## 2868 837.20930 1090.1163
## 2869 837.20930 1090.1163
## 2870 837.20930 1090.1163
## 2871 837.20930 1090.1163
## 2872 837.20930 1090.1163
## 2873 837.20930 1090.1163
## 2874 837.20930 1090.1163
## 2875 837.20930 1090.1163
## 2876 837.20930 1090.1163
## 2877 837.20930 1090.1163
## 2878 837.20930 1090.1163
## 2879 837.20930 1090.1163
## 2880 837.20930 1090.1163
## 2881 7834.88372 3155.2326
## 2882 7834.88372 3155.2326
## 2883 7834.88372 3155.2326
## 2884 7834.88372 3155.2326
## 2885 7834.88372 3155.2326
## 2886 7834.88372 3155.2326
## 2887 7834.88372 3155.2326
## 2888 7834.88372 3155.2326
## 2889 7834.88372 3155.2326
## 2890 7834.88372 3155.2326
## 2891 7834.88372 3155.2326
## 2892 7834.88372 3155.2326
## 2893 7834.88372 3155.2326
## 2894 7834.88372 3155.2326
## 2895 7834.88372 3155.2326
## 2896 7834.88372 3155.2326
## 2897 7834.88372 3155.2326
## 2898 7834.88372 3155.2326
## 2899 7834.88372 3155.2326
## 2900 7834.88372 3155.2326
## 2901 7834.88372 3155.2326
## 2902 7834.88372 3155.2326
## 2903 7834.88372 3155.2326
## 2904 7834.88372 3155.2326
## 2905 2398.25581 3811.0465
## 2906 2398.25581 3811.0465
## 2907 2398.25581 3811.0465
## 2908 2398.25581 3811.0465
## 2909 2398.25581 3811.0465
## 2910 2398.25581 3811.0465
## 2911 2398.25581 3811.0465
## 2912 2398.25581 3811.0465
## 2913 2398.25581 3811.0465
## 2914 2398.25581 3811.0465
## 2915 2398.25581 3811.0465
## 2916 2398.25581 3811.0465
## 2917 2398.25581 3811.0465
## 2918 2398.25581 3811.0465
## 2919 2398.25581 3811.0465
## 2920 2398.25581 3811.0465
## 2921 2398.25581 3811.0465
## 2922 2398.25581 3811.0465
## 2923 2398.25581 3811.0465
## 2924 2398.25581 3811.0465
## 2925 2398.25581 3811.0465
## 2926 2398.25581 3811.0465
## 2927 2398.25581 3811.0465
## 2928 2398.25581 3811.0465
## 2929 127.32558 1887.2093
## 2930 127.32558 1887.2093
## 2931 127.32558 1887.2093
## 2932 127.32558 1887.2093
## 2933 127.32558 1887.2093
## 2934 127.32558 1887.2093
## 2935 127.32558 1887.2093
## 2936 127.32558 1887.2093
## 2937 127.32558 1887.2093
## 2938 127.32558 1887.2093
## 2939 127.32558 1887.2093
## 2940 127.32558 1887.2093
## 2941 127.32558 1887.2093
## 2942 127.32558 1887.2093
## 2943 127.32558 1887.2093
## 2944 127.32558 1887.2093
## 2945 127.32558 1887.2093
## 2946 127.32558 1887.2093
## 2947 127.32558 1887.2093
## 2948 127.32558 1887.2093
## 2949 127.32558 1887.2093
## 2950 127.32558 1887.2093
## 2951 127.32558 1887.2093
## 2952 127.32558 1887.2093
## 2953 0.00000 5084.3023
## 2954 0.00000 5084.3023
## 2955 0.00000 5084.3023
## 2956 0.00000 5084.3023
## 2957 0.00000 5084.3023
## 2958 0.00000 5084.3023
## 2959 0.00000 5084.3023
## 2960 0.00000 5084.3023
## 2961 0.00000 5084.3023
## 2962 0.00000 5084.3023
## 2963 0.00000 5084.3023
## 2964 0.00000 5084.3023
## 2965 0.00000 5084.3023
## 2966 0.00000 5084.3023
## 2967 0.00000 5084.3023
## 2968 0.00000 5084.3023
## 2969 0.00000 5084.3023
## 2970 0.00000 5084.3023
## 2971 0.00000 5084.3023
## 2972 0.00000 5084.3023
## 2973 0.00000 5084.3023
## 2974 0.00000 5084.3023
## 2975 0.00000 5084.3023
## 2976 0.00000 5084.3023
## 2977 0.00000 4822.6744
## 2978 0.00000 4822.6744
## 2979 0.00000 4822.6744
## 2980 0.00000 4822.6744
## 2981 0.00000 4822.6744
## 2982 0.00000 4822.6744
## 2983 0.00000 4822.6744
## 2984 0.00000 4822.6744
## 2985 0.00000 4822.6744
## 2986 0.00000 4822.6744
## 2987 0.00000 4822.6744
## 2988 0.00000 4822.6744
## 2989 0.00000 4822.6744
## 2990 0.00000 4822.6744
## 2991 0.00000 4822.6744
## 2992 0.00000 4822.6744
## 2993 0.00000 4822.6744
## 2994 0.00000 4822.6744
## 2995 0.00000 4822.6744
## 2996 0.00000 4822.6744
## 2997 0.00000 4822.6744
## 2998 0.00000 4822.6744
## 2999 0.00000 4822.6744
## 3000 0.00000 4822.6744
## 3001 0.00000 3174.4186
## 3002 0.00000 3174.4186
## 3003 0.00000 3174.4186
## 3004 0.00000 3174.4186
## 3005 0.00000 3174.4186
## 3006 0.00000 3174.4186
## 3007 0.00000 3174.4186
## 3008 0.00000 3174.4186
## 3009 0.00000 3174.4186
## 3010 0.00000 3174.4186
## 3011 0.00000 3174.4186
## 3012 0.00000 3174.4186
## 3013 0.00000 3174.4186
## 3014 0.00000 3174.4186
## 3015 0.00000 3174.4186
## 3016 0.00000 3174.4186
## 3017 0.00000 3174.4186
## 3018 0.00000 3174.4186
## 3019 0.00000 3174.4186
## 3020 0.00000 3174.4186
## 3021 0.00000 3174.4186
## 3022 0.00000 3174.4186
## 3023 0.00000 3174.4186
## 3024 0.00000 3174.4186
## 3025 0.00000 662.7907
## 3026 0.00000 662.7907
## 3027 0.00000 662.7907
## 3028 0.00000 662.7907
## 3029 0.00000 662.7907
## 3030 0.00000 662.7907
## 3031 0.00000 662.7907
## 3032 0.00000 662.7907
## 3033 0.00000 662.7907
## 3034 0.00000 662.7907
## 3035 0.00000 662.7907
## 3036 0.00000 662.7907
## 3037 0.00000 662.7907
## 3038 0.00000 662.7907
## 3039 0.00000 662.7907
## 3040 0.00000 662.7907
## 3041 0.00000 662.7907
## 3042 0.00000 662.7907
## 3043 0.00000 662.7907
## 3044 0.00000 662.7907
## 3045 0.00000 662.7907
## 3046 0.00000 662.7907
## 3047 0.00000 662.7907
## 3048 0.00000 662.7907
## 3049 1090.11628 2646.8023
## 3050 1090.11628 2646.8023
## 3051 1090.11628 2646.8023
## 3052 1090.11628 2646.8023
## 3053 1090.11628 2646.8023
## 3054 1090.11628 2646.8023
## 3055 1090.11628 2646.8023
## 3056 1090.11628 2646.8023
## 3057 1090.11628 2646.8023
## 3058 1090.11628 2646.8023
## 3059 1090.11628 2646.8023
## 3060 1090.11628 2646.8023
## 3061 1090.11628 2646.8023
## 3062 1090.11628 2646.8023
## 3063 1090.11628 2646.8023
## 3064 1090.11628 2646.8023
## 3065 1090.11628 2646.8023
## 3066 1090.11628 2646.8023
## 3067 1090.11628 2646.8023
## 3068 1090.11628 2646.8023
## 3069 1090.11628 2646.8023
## 3070 1090.11628 2646.8023
## 3071 1090.11628 2646.8023
## 3072 1090.11628 2646.8023
## 3073 7834.88372 3155.2326
## 3074 7834.88372 3155.2326
## 3075 7834.88372 3155.2326
## 3076 7834.88372 3155.2326
## 3077 7834.88372 3155.2326
## 3078 7834.88372 3155.2326
## 3079 7834.88372 3155.2326
## 3080 7834.88372 3155.2326
## 3081 7834.88372 3155.2326
## 3082 7834.88372 3155.2326
## 3083 7834.88372 3155.2326
## 3084 7834.88372 3155.2326
## 3085 7834.88372 3155.2326
## 3086 7834.88372 3155.2326
## 3087 7834.88372 3155.2326
## 3088 7834.88372 3155.2326
## 3089 7834.88372 3155.2326
## 3090 7834.88372 3155.2326
## 3091 7834.88372 3155.2326
## 3092 7834.88372 3155.2326
## 3093 7834.88372 3155.2326
## 3094 7834.88372 3155.2326
## 3095 7834.88372 3155.2326
## 3096 7834.88372 3155.2326
## 3097 1281.97674 7639.5349
## 3098 1281.97674 7639.5349
## 3099 1281.97674 7639.5349
## 3100 1281.97674 7639.5349
## 3101 1281.97674 7639.5349
## 3102 1281.97674 7639.5349
## 3103 1281.97674 7639.5349
## 3104 1281.97674 7639.5349
## 3105 1281.97674 7639.5349
## 3106 1281.97674 7639.5349
## 3107 1281.97674 7639.5349
## 3108 1281.97674 7639.5349
## 3109 1281.97674 7639.5349
## 3110 1281.97674 7639.5349
## 3111 1281.97674 7639.5349
## 3112 1281.97674 7639.5349
## 3113 1281.97674 7639.5349
## 3114 1281.97674 7639.5349
## 3115 1281.97674 7639.5349
## 3116 1281.97674 7639.5349
## 3117 1281.97674 7639.5349
## 3118 1281.97674 7639.5349
## 3119 1281.97674 7639.5349
## 3120 1281.97674 7639.5349
## 3121 127.32558 3640.1163
## 3122 127.32558 3640.1163
## 3123 127.32558 3640.1163
## 3124 127.32558 3640.1163
## 3125 127.32558 3640.1163
## 3126 127.32558 3640.1163
## 3127 127.32558 3640.1163
## 3128 127.32558 3640.1163
## 3129 127.32558 3640.1163
## 3130 127.32558 3640.1163
## 3131 127.32558 3640.1163
## 3132 127.32558 3640.1163
## 3133 127.32558 3640.1163
## 3134 127.32558 3640.1163
## 3135 127.32558 3640.1163
## 3136 127.32558 3640.1163
## 3137 127.32558 3640.1163
## 3138 127.32558 3640.1163
## 3139 127.32558 3640.1163
## 3140 127.32558 3640.1163
## 3141 127.32558 3640.1163
## 3142 127.32558 3640.1163
## 3143 127.32558 3640.1163
## 3144 127.32558 3640.1163
## 3145 1438.95349 4988.3721
## 3146 1438.95349 4988.3721
## 3147 1438.95349 4988.3721
## 3148 1438.95349 4988.3721
## 3149 1438.95349 4988.3721
## 3150 1438.95349 4988.3721
## 3151 1438.95349 4988.3721
## 3152 1438.95349 4988.3721
## 3153 1438.95349 4988.3721
## 3154 1438.95349 4988.3721
## 3155 1438.95349 4988.3721
## 3156 1438.95349 4988.3721
## 3157 1438.95349 4988.3721
## 3158 1438.95349 4988.3721
## 3159 1438.95349 4988.3721
## 3160 1438.95349 4988.3721
## 3161 1438.95349 4988.3721
## 3162 1438.95349 4988.3721
## 3163 1438.95349 4988.3721
## 3164 1438.95349 4988.3721
## 3165 1438.95349 4988.3721
## 3166 1438.95349 4988.3721
## 3167 1438.95349 4988.3721
## 3168 1438.95349 4988.3721
## 3169 0.00000 4116.2791
## 3170 0.00000 4116.2791
## 3171 0.00000 4116.2791
## 3172 0.00000 4116.2791
## 3173 0.00000 4116.2791
## 3174 0.00000 4116.2791
## 3175 0.00000 4116.2791
## 3176 0.00000 4116.2791
## 3177 0.00000 4116.2791
## 3178 0.00000 4116.2791
## 3179 0.00000 4116.2791
## 3180 0.00000 4116.2791
## 3181 0.00000 4116.2791
## 3182 0.00000 4116.2791
## 3183 0.00000 4116.2791
## 3184 0.00000 4116.2791
## 3185 0.00000 4116.2791
## 3186 0.00000 4116.2791
## 3187 0.00000 4116.2791
## 3188 0.00000 4116.2791
## 3189 0.00000 4116.2791
## 3190 0.00000 4116.2791
## 3191 0.00000 4116.2791
## 3192 0.00000 4116.2791
## 3193 0.00000 1674.4186
## 3194 0.00000 1674.4186
## 3195 0.00000 1674.4186
## 3196 0.00000 1674.4186
## 3197 0.00000 1674.4186
## 3198 0.00000 1674.4186
## 3199 0.00000 1674.4186
## 3200 0.00000 1674.4186
## 3201 0.00000 1674.4186
## 3202 0.00000 1674.4186
## 3203 0.00000 1674.4186
## 3204 0.00000 1674.4186
## 3205 0.00000 1674.4186
## 3206 0.00000 1674.4186
## 3207 0.00000 1674.4186
## 3208 0.00000 1674.4186
## 3209 0.00000 1674.4186
## 3210 0.00000 1674.4186
## 3211 0.00000 1674.4186
## 3212 0.00000 1674.4186
## 3213 0.00000 1674.4186
## 3214 0.00000 1674.4186
## 3215 0.00000 1674.4186
## 3216 0.00000 1674.4186
## 3217 1312.50000 1059.5930
## 3218 1312.50000 1059.5930
## 3219 1312.50000 1059.5930
## 3220 1312.50000 1059.5930
## 3221 1312.50000 1059.5930
## 3222 1312.50000 1059.5930
## 3223 1312.50000 1059.5930
## 3224 1312.50000 1059.5930
## 3225 1312.50000 1059.5930
## total_metaecosystem_Lox_indiv total_metaecosystem_Pau_indiv
## 1 2494.1860 5161.0465
## 2 2494.1860 5161.0465
## 3 2494.1860 5161.0465
## 4 2494.1860 5161.0465
## 5 2494.1860 5161.0465
## 6 2494.1860 5161.0465
## 7 2494.1860 5161.0465
## 8 2494.1860 5161.0465
## 9 2494.1860 5161.0465
## 10 2494.1860 5161.0465
## 11 2494.1860 5161.0465
## 12 2494.1860 5161.0465
## 13 2494.1860 5161.0465
## 14 2494.1860 5161.0465
## 15 2494.1860 5161.0465
## 16 2494.1860 5161.0465
## 17 2494.1860 5161.0465
## 18 2494.1860 5161.0465
## 19 2494.1860 5161.0465
## 20 2494.1860 5161.0465
## 21 2494.1860 5161.0465
## 22 2494.1860 5161.0465
## 23 2494.1860 5161.0465
## 24 2494.1860 5161.0465
## 25 218.0233 0.0000
## 26 218.0233 0.0000
## 27 218.0233 0.0000
## 28 218.0233 0.0000
## 29 218.0233 0.0000
## 30 218.0233 0.0000
## 31 218.0233 0.0000
## 32 218.0233 0.0000
## 33 218.0233 0.0000
## 34 218.0233 0.0000
## 35 218.0233 0.0000
## 36 218.0233 0.0000
## 37 218.0233 0.0000
## 38 218.0233 0.0000
## 39 218.0233 0.0000
## 40 218.0233 0.0000
## 41 218.0233 0.0000
## 42 218.0233 0.0000
## 43 218.0233 0.0000
## 44 218.0233 0.0000
## 45 218.0233 0.0000
## 46 218.0233 0.0000
## 47 218.0233 0.0000
## 48 218.0233 0.0000
## 49 0.0000 1970.9302
## 50 0.0000 1970.9302
## 51 0.0000 1970.9302
## 52 0.0000 1970.9302
## 53 0.0000 1970.9302
## 54 0.0000 1970.9302
## 55 0.0000 1970.9302
## 56 0.0000 1970.9302
## 57 0.0000 1970.9302
## 58 0.0000 1970.9302
## 59 0.0000 1970.9302
## 60 0.0000 1970.9302
## 61 0.0000 1970.9302
## 62 0.0000 1970.9302
## 63 0.0000 1970.9302
## 64 0.0000 1970.9302
## 65 0.0000 1970.9302
## 66 0.0000 1970.9302
## 67 0.0000 1970.9302
## 68 0.0000 1970.9302
## 69 0.0000 1970.9302
## 70 0.0000 1970.9302
## 71 0.0000 1970.9302
## 72 0.0000 1970.9302
## 73 0.0000 1369.1860
## 74 0.0000 1369.1860
## 75 0.0000 1369.1860
## 76 0.0000 1369.1860
## 77 0.0000 1369.1860
## 78 0.0000 1369.1860
## 79 0.0000 1369.1860
## 80 0.0000 1369.1860
## 81 0.0000 1369.1860
## 82 0.0000 1369.1860
## 83 0.0000 1369.1860
## 84 0.0000 1369.1860
## 85 0.0000 1369.1860
## 86 0.0000 1369.1860
## 87 0.0000 1369.1860
## 88 0.0000 1369.1860
## 89 0.0000 1369.1860
## 90 0.0000 1369.1860
## 91 0.0000 1369.1860
## 92 0.0000 1369.1860
## 93 0.0000 1369.1860
## 94 0.0000 1369.1860
## 95 0.0000 1369.1860
## 96 0.0000 1369.1860
## 97 436.0465 2776.7442
## 98 436.0465 2776.7442
## 99 436.0465 2776.7442
## 100 436.0465 2776.7442
## 101 436.0465 2776.7442
## 102 436.0465 2776.7442
## 103 436.0465 2776.7442
## 104 436.0465 2776.7442
## 105 436.0465 2776.7442
## 106 436.0465 2776.7442
## 107 436.0465 2776.7442
## 108 436.0465 2776.7442
## 109 436.0465 2776.7442
## 110 436.0465 2776.7442
## 111 436.0465 2776.7442
## 112 436.0465 2776.7442
## 113 436.0465 2776.7442
## 114 436.0465 2776.7442
## 115 436.0465 2776.7442
## 116 436.0465 2776.7442
## 117 436.0465 2776.7442
## 118 436.0465 2776.7442
## 119 436.0465 2776.7442
## 120 436.0465 2776.7442
## 121 0.0000 559.8837
## 122 0.0000 559.8837
## 123 0.0000 559.8837
## 124 0.0000 559.8837
## 125 0.0000 559.8837
## 126 0.0000 559.8837
## 127 0.0000 559.8837
## 128 0.0000 559.8837
## 129 0.0000 559.8837
## 130 0.0000 559.8837
## 131 0.0000 559.8837
## 132 0.0000 559.8837
## 133 0.0000 559.8837
## 134 0.0000 559.8837
## 135 0.0000 559.8837
## 136 0.0000 559.8837
## 137 0.0000 559.8837
## 138 0.0000 559.8837
## 139 0.0000 559.8837
## 140 0.0000 559.8837
## 141 0.0000 559.8837
## 142 0.0000 559.8837
## 143 0.0000 559.8837
## 144 0.0000 559.8837
## 145 545.0581 109.0116
## 146 545.0581 109.0116
## 147 545.0581 109.0116
## 148 545.0581 109.0116
## 149 545.0581 109.0116
## 150 545.0581 109.0116
## 151 545.0581 109.0116
## 152 545.0581 109.0116
## 153 545.0581 109.0116
## 154 545.0581 109.0116
## 155 545.0581 109.0116
## 156 545.0581 109.0116
## 157 545.0581 109.0116
## 158 545.0581 109.0116
## 159 545.0581 109.0116
## 160 545.0581 109.0116
## 161 545.0581 109.0116
## 162 545.0581 109.0116
## 163 545.0581 109.0116
## 164 545.0581 109.0116
## 165 545.0581 109.0116
## 166 545.0581 109.0116
## 167 545.0581 109.0116
## 168 545.0581 109.0116
## 169 1630.8140 531.9767
## 170 1630.8140 531.9767
## 171 1630.8140 531.9767
## 172 1630.8140 531.9767
## 173 1630.8140 531.9767
## 174 1630.8140 531.9767
## 175 1630.8140 531.9767
## 176 1630.8140 531.9767
## 177 1630.8140 531.9767
## 178 1630.8140 531.9767
## 179 1630.8140 531.9767
## 180 1630.8140 531.9767
## 181 1630.8140 531.9767
## 182 1630.8140 531.9767
## 183 1630.8140 531.9767
## 184 1630.8140 531.9767
## 185 1630.8140 531.9767
## 186 1630.8140 531.9767
## 187 1630.8140 531.9767
## 188 1630.8140 531.9767
## 189 1630.8140 531.9767
## 190 1630.8140 531.9767
## 191 1630.8140 531.9767
## 192 1630.8140 531.9767
## 193 2494.1860 5161.0465
## 194 2494.1860 5161.0465
## 195 2494.1860 5161.0465
## 196 2494.1860 5161.0465
## 197 2494.1860 5161.0465
## 198 2494.1860 5161.0465
## 199 2494.1860 5161.0465
## 200 2494.1860 5161.0465
## 201 2494.1860 5161.0465
## 202 2494.1860 5161.0465
## 203 2494.1860 5161.0465
## 204 2494.1860 5161.0465
## 205 2494.1860 5161.0465
## 206 2494.1860 5161.0465
## 207 2494.1860 5161.0465
## 208 2494.1860 5161.0465
## 209 2494.1860 5161.0465
## 210 2494.1860 5161.0465
## 211 2494.1860 5161.0465
## 212 2494.1860 5161.0465
## 213 2494.1860 5161.0465
## 214 2494.1860 5161.0465
## 215 2494.1860 5161.0465
## 216 2494.1860 5161.0465
## 217 1438.9535 5720.9302
## 218 1438.9535 5720.9302
## 219 1438.9535 5720.9302
## 220 1438.9535 5720.9302
## 221 1438.9535 5720.9302
## 222 1438.9535 5720.9302
## 223 1438.9535 5720.9302
## 224 1438.9535 5720.9302
## 225 1438.9535 5720.9302
## 226 1438.9535 5720.9302
## 227 1438.9535 5720.9302
## 228 1438.9535 5720.9302
## 229 1438.9535 5720.9302
## 230 1438.9535 5720.9302
## 231 1438.9535 5720.9302
## 232 1438.9535 5720.9302
## 233 1438.9535 5720.9302
## 234 1438.9535 5720.9302
## 235 1438.9535 5720.9302
## 236 1438.9535 5720.9302
## 237 1438.9535 5720.9302
## 238 1438.9535 5720.9302
## 239 1438.9535 5720.9302
## 240 1438.9535 5720.9302
## 241 0.0000 331.3953
## 242 0.0000 331.3953
## 243 0.0000 331.3953
## 244 0.0000 331.3953
## 245 0.0000 331.3953
## 246 0.0000 331.3953
## 247 0.0000 331.3953
## 248 0.0000 331.3953
## 249 0.0000 331.3953
## 250 0.0000 331.3953
## 251 0.0000 331.3953
## 252 0.0000 331.3953
## 253 0.0000 331.3953
## 254 0.0000 331.3953
## 255 0.0000 331.3953
## 256 0.0000 331.3953
## 257 0.0000 331.3953
## 258 0.0000 331.3953
## 259 0.0000 331.3953
## 260 0.0000 331.3953
## 261 0.0000 331.3953
## 262 0.0000 331.3953
## 263 0.0000 331.3953
## 264 0.0000 331.3953
## 265 0.0000 3052.3256
## 266 0.0000 3052.3256
## 267 0.0000 3052.3256
## 268 0.0000 3052.3256
## 269 0.0000 3052.3256
## 270 0.0000 3052.3256
## 271 0.0000 3052.3256
## 272 0.0000 3052.3256
## 273 0.0000 3052.3256
## 274 0.0000 3052.3256
## 275 0.0000 3052.3256
## 276 0.0000 3052.3256
## 277 0.0000 3052.3256
## 278 0.0000 3052.3256
## 279 0.0000 3052.3256
## 280 0.0000 3052.3256
## 281 0.0000 3052.3256
## 282 0.0000 3052.3256
## 283 0.0000 3052.3256
## 284 0.0000 3052.3256
## 285 0.0000 3052.3256
## 286 0.0000 3052.3256
## 287 0.0000 3052.3256
## 288 0.0000 3052.3256
## 289 436.0465 2192.4419
## 290 436.0465 2192.4419
## 291 436.0465 2192.4419
## 292 436.0465 2192.4419
## 293 436.0465 2192.4419
## 294 436.0465 2192.4419
## 295 436.0465 2192.4419
## 296 436.0465 2192.4419
## 297 436.0465 2192.4419
## 298 436.0465 2192.4419
## 299 436.0465 2192.4419
## 300 436.0465 2192.4419
## 301 436.0465 2192.4419
## 302 436.0465 2192.4419
## 303 436.0465 2192.4419
## 304 436.0465 2192.4419
## 305 436.0465 2192.4419
## 306 436.0465 2192.4419
## 307 436.0465 2192.4419
## 308 436.0465 2192.4419
## 309 436.0465 2192.4419
## 310 436.0465 2192.4419
## 311 436.0465 2192.4419
## 312 436.0465 2192.4419
## 313 0.0000 1833.1395
## 314 0.0000 1833.1395
## 315 0.0000 1833.1395
## 316 0.0000 1833.1395
## 317 0.0000 1833.1395
## 318 0.0000 1833.1395
## 319 0.0000 1833.1395
## 320 0.0000 1833.1395
## 321 0.0000 1833.1395
## 322 0.0000 1833.1395
## 323 0.0000 1833.1395
## 324 0.0000 1833.1395
## 325 0.0000 1833.1395
## 326 0.0000 1833.1395
## 327 0.0000 1833.1395
## 328 0.0000 1833.1395
## 329 0.0000 1833.1395
## 330 0.0000 1833.1395
## 331 0.0000 1833.1395
## 332 0.0000 1833.1395
## 333 0.0000 1833.1395
## 334 0.0000 1833.1395
## 335 0.0000 1833.1395
## 336 0.0000 1833.1395
## 337 0.0000 1020.3488
## 338 0.0000 1020.3488
## 339 0.0000 1020.3488
## 340 0.0000 1020.3488
## 341 0.0000 1020.3488
## 342 0.0000 1020.3488
## 343 0.0000 1020.3488
## 344 0.0000 1020.3488
## 345 0.0000 1020.3488
## 346 0.0000 1020.3488
## 347 0.0000 1020.3488
## 348 0.0000 1020.3488
## 349 0.0000 1020.3488
## 350 0.0000 1020.3488
## 351 0.0000 1020.3488
## 352 0.0000 1020.3488
## 353 0.0000 1020.3488
## 354 0.0000 1020.3488
## 355 0.0000 1020.3488
## 356 0.0000 1020.3488
## 357 0.0000 1020.3488
## 358 0.0000 1020.3488
## 359 0.0000 1020.3488
## 360 0.0000 1020.3488
## 361 545.0581 109.0116
## 362 545.0581 109.0116
## 363 545.0581 109.0116
## 364 545.0581 109.0116
## 365 545.0581 109.0116
## 366 545.0581 109.0116
## 367 545.0581 109.0116
## 368 545.0581 109.0116
## 369 545.0581 109.0116
## 370 545.0581 109.0116
## 371 545.0581 109.0116
## 372 545.0581 109.0116
## 373 545.0581 109.0116
## 374 545.0581 109.0116
## 375 545.0581 109.0116
## 376 545.0581 109.0116
## 377 545.0581 109.0116
## 378 545.0581 109.0116
## 379 545.0581 109.0116
## 380 545.0581 109.0116
## 381 545.0581 109.0116
## 382 545.0581 109.0116
## 383 545.0581 109.0116
## 384 545.0581 109.0116
## 385 2494.1860 5161.0465
## 386 2494.1860 5161.0465
## 387 2494.1860 5161.0465
## 388 2494.1860 5161.0465
## 389 2494.1860 5161.0465
## 390 2494.1860 5161.0465
## 391 2494.1860 5161.0465
## 392 2494.1860 5161.0465
## 393 2494.1860 5161.0465
## 394 2494.1860 5161.0465
## 395 2494.1860 5161.0465
## 396 2494.1860 5161.0465
## 397 2494.1860 5161.0465
## 398 2494.1860 5161.0465
## 399 2494.1860 5161.0465
## 400 2494.1860 5161.0465
## 401 2494.1860 5161.0465
## 402 2494.1860 5161.0465
## 403 2494.1860 5161.0465
## 404 2494.1860 5161.0465
## 405 2494.1860 5161.0465
## 406 2494.1860 5161.0465
## 407 2494.1860 5161.0465
## 408 2494.1860 5161.0465
## 409 2188.9535 915.6977
## 410 2188.9535 915.6977
## 411 2188.9535 915.6977
## 412 2188.9535 915.6977
## 413 2188.9535 915.6977
## 414 2188.9535 915.6977
## 415 2188.9535 915.6977
## 416 2188.9535 915.6977
## 417 2188.9535 915.6977
## 418 2188.9535 915.6977
## 419 2188.9535 915.6977
## 420 2188.9535 915.6977
## 421 2188.9535 915.6977
## 422 2188.9535 915.6977
## 423 2188.9535 915.6977
## 424 2188.9535 915.6977
## 425 2188.9535 915.6977
## 426 2188.9535 915.6977
## 427 2188.9535 915.6977
## 428 2188.9535 915.6977
## 429 2188.9535 915.6977
## 430 2188.9535 915.6977
## 431 2188.9535 915.6977
## 432 2188.9535 915.6977
## 433 244.1860 872.0930
## 434 244.1860 872.0930
## 435 244.1860 872.0930
## 436 244.1860 872.0930
## 437 244.1860 872.0930
## 438 244.1860 872.0930
## 439 244.1860 872.0930
## 440 244.1860 872.0930
## 441 244.1860 872.0930
## 442 244.1860 872.0930
## 443 244.1860 872.0930
## 444 244.1860 872.0930
## 445 244.1860 872.0930
## 446 244.1860 872.0930
## 447 244.1860 872.0930
## 448 244.1860 872.0930
## 449 244.1860 872.0930
## 450 244.1860 872.0930
## 451 244.1860 872.0930
## 452 244.1860 872.0930
## 453 244.1860 872.0930
## 454 244.1860 872.0930
## 455 244.1860 872.0930
## 456 244.1860 872.0930
## 457 837.2093 2093.0233
## 458 837.2093 2093.0233
## 459 837.2093 2093.0233
## 460 837.2093 2093.0233
## 461 837.2093 2093.0233
## 462 837.2093 2093.0233
## 463 837.2093 2093.0233
## 464 837.2093 2093.0233
## 465 837.2093 2093.0233
## 466 837.2093 2093.0233
## 467 837.2093 2093.0233
## 468 837.2093 2093.0233
## 469 837.2093 2093.0233
## 470 837.2093 2093.0233
## 471 837.2093 2093.0233
## 472 837.2093 2093.0233
## 473 837.2093 2093.0233
## 474 837.2093 2093.0233
## 475 837.2093 2093.0233
## 476 837.2093 2093.0233
## 477 837.2093 2093.0233
## 478 837.2093 2093.0233
## 479 837.2093 2093.0233
## 480 837.2093 2093.0233
## 481 436.0465 1477.3256
## 482 436.0465 1477.3256
## 483 436.0465 1477.3256
## 484 436.0465 1477.3256
## 485 436.0465 1477.3256
## 486 436.0465 1477.3256
## 487 436.0465 1477.3256
## 488 436.0465 1477.3256
## 489 436.0465 1477.3256
## 490 436.0465 1477.3256
## 491 436.0465 1477.3256
## 492 436.0465 1477.3256
## 493 436.0465 1477.3256
## 494 436.0465 1477.3256
## 495 436.0465 1477.3256
## 496 436.0465 1477.3256
## 497 436.0465 1477.3256
## 498 436.0465 1477.3256
## 499 436.0465 1477.3256
## 500 436.0465 1477.3256
## 501 436.0465 1477.3256
## 502 436.0465 1477.3256
## 503 436.0465 1477.3256
## 504 436.0465 1477.3256
## 505 0.0000 3647.0930
## 506 0.0000 3647.0930
## 507 0.0000 3647.0930
## 508 0.0000 3647.0930
## 509 0.0000 3647.0930
## 510 0.0000 3647.0930
## 511 0.0000 3647.0930
## 512 0.0000 3647.0930
## 513 0.0000 3647.0930
## 514 0.0000 3647.0930
## 515 0.0000 3647.0930
## 516 0.0000 3647.0930
## 517 0.0000 3647.0930
## 518 0.0000 3647.0930
## 519 0.0000 3647.0930
## 520 0.0000 3647.0930
## 521 0.0000 3647.0930
## 522 0.0000 3647.0930
## 523 0.0000 3647.0930
## 524 0.0000 3647.0930
## 525 0.0000 3647.0930
## 526 0.0000 3647.0930
## 527 0.0000 3647.0930
## 528 0.0000 3647.0930
## 529 545.0581 353.1977
## 530 545.0581 353.1977
## 531 545.0581 353.1977
## 532 545.0581 353.1977
## 533 545.0581 353.1977
## 534 545.0581 353.1977
## 535 545.0581 353.1977
## 536 545.0581 353.1977
## 537 545.0581 353.1977
## 538 545.0581 353.1977
## 539 545.0581 353.1977
## 540 545.0581 353.1977
## 541 545.0581 353.1977
## 542 545.0581 353.1977
## 543 545.0581 353.1977
## 544 545.0581 353.1977
## 545 545.0581 353.1977
## 546 545.0581 353.1977
## 547 545.0581 353.1977
## 548 545.0581 353.1977
## 549 545.0581 353.1977
## 550 545.0581 353.1977
## 551 545.0581 353.1977
## 552 545.0581 353.1977
## 553 1212.2093 523.2558
## 554 1212.2093 523.2558
## 555 1212.2093 523.2558
## 556 1212.2093 523.2558
## 557 1212.2093 523.2558
## 558 1212.2093 523.2558
## 559 1212.2093 523.2558
## 560 1212.2093 523.2558
## 561 1212.2093 523.2558
## 562 1212.2093 523.2558
## 563 1212.2093 523.2558
## 564 1212.2093 523.2558
## 565 1212.2093 523.2558
## 566 1212.2093 523.2558
## 567 1212.2093 523.2558
## 568 1212.2093 523.2558
## 569 1212.2093 523.2558
## 570 1212.2093 523.2558
## 571 1212.2093 523.2558
## 572 1212.2093 523.2558
## 573 1212.2093 523.2558
## 574 1212.2093 523.2558
## 575 1212.2093 523.2558
## 576 1212.2093 523.2558
## 577 2494.1860 5161.0465
## 578 2494.1860 5161.0465
## 579 2494.1860 5161.0465
## 580 2494.1860 5161.0465
## 581 2494.1860 5161.0465
## 582 2494.1860 5161.0465
## 583 2494.1860 5161.0465
## 584 2494.1860 5161.0465
## 585 2494.1860 5161.0465
## 586 2494.1860 5161.0465
## 587 2494.1860 5161.0465
## 588 2494.1860 5161.0465
## 589 2494.1860 5161.0465
## 590 2494.1860 5161.0465
## 591 2494.1860 5161.0465
## 592 2494.1860 5161.0465
## 593 2494.1860 5161.0465
## 594 2494.1860 5161.0465
## 595 2494.1860 5161.0465
## 596 2494.1860 5161.0465
## 597 2494.1860 5161.0465
## 598 2494.1860 5161.0465
## 599 2494.1860 5161.0465
## 600 2494.1860 5161.0465
## 601 218.0233 2494.1860
## 602 218.0233 2494.1860
## 603 218.0233 2494.1860
## 604 218.0233 2494.1860
## 605 218.0233 2494.1860
## 606 218.0233 2494.1860
## 607 218.0233 2494.1860
## 608 218.0233 2494.1860
## 609 218.0233 2494.1860
## 610 218.0233 2494.1860
## 611 218.0233 2494.1860
## 612 218.0233 2494.1860
## 613 218.0233 2494.1860
## 614 218.0233 2494.1860
## 615 218.0233 2494.1860
## 616 218.0233 2494.1860
## 617 218.0233 2494.1860
## 618 218.0233 2494.1860
## 619 218.0233 2494.1860
## 620 218.0233 2494.1860
## 621 218.0233 2494.1860
## 622 218.0233 2494.1860
## 623 218.0233 2494.1860
## 624 218.0233 2494.1860
## 625 0.0000 3165.6977
## 626 0.0000 3165.6977
## 627 0.0000 3165.6977
## 628 0.0000 3165.6977
## 629 0.0000 3165.6977
## 630 0.0000 3165.6977
## 631 0.0000 3165.6977
## 632 0.0000 3165.6977
## 633 0.0000 3165.6977
## 634 0.0000 3165.6977
## 635 0.0000 3165.6977
## 636 0.0000 3165.6977
## 637 0.0000 3165.6977
## 638 0.0000 3165.6977
## 639 0.0000 3165.6977
## 640 0.0000 3165.6977
## 641 0.0000 3165.6977
## 642 0.0000 3165.6977
## 643 0.0000 3165.6977
## 644 0.0000 3165.6977
## 645 0.0000 3165.6977
## 646 0.0000 3165.6977
## 647 0.0000 3165.6977
## 648 0.0000 3165.6977
## 649 0.0000 0.0000
## 650 0.0000 0.0000
## 651 0.0000 0.0000
## 652 0.0000 0.0000
## 653 0.0000 0.0000
## 654 0.0000 0.0000
## 655 0.0000 0.0000
## 656 0.0000 0.0000
## 657 0.0000 0.0000
## 658 0.0000 0.0000
## 659 0.0000 0.0000
## 660 0.0000 0.0000
## 661 0.0000 0.0000
## 662 0.0000 0.0000
## 663 0.0000 0.0000
## 664 0.0000 0.0000
## 665 0.0000 0.0000
## 666 0.0000 0.0000
## 667 0.0000 0.0000
## 668 0.0000 0.0000
## 669 0.0000 0.0000
## 670 0.0000 0.0000
## 671 0.0000 0.0000
## 672 0.0000 0.0000
## 673 436.0465 422.0930
## 674 436.0465 422.0930
## 675 436.0465 422.0930
## 676 436.0465 422.0930
## 677 436.0465 422.0930
## 678 436.0465 422.0930
## 679 436.0465 422.0930
## 680 436.0465 422.0930
## 681 436.0465 422.0930
## 682 436.0465 422.0930
## 683 436.0465 422.0930
## 684 436.0465 422.0930
## 685 436.0465 422.0930
## 686 436.0465 422.0930
## 687 436.0465 422.0930
## 688 436.0465 422.0930
## 689 436.0465 422.0930
## 690 436.0465 422.0930
## 691 436.0465 422.0930
## 692 436.0465 422.0930
## 693 436.0465 422.0930
## 694 436.0465 422.0930
## 695 436.0465 422.0930
## 696 436.0465 422.0930
## 697 1090.1163 167.4419
## 698 1090.1163 167.4419
## 699 1090.1163 167.4419
## 700 1090.1163 167.4419
## 701 1090.1163 167.4419
## 702 1090.1163 167.4419
## 703 1090.1163 167.4419
## 704 1090.1163 167.4419
## 705 1090.1163 167.4419
## 706 1090.1163 167.4419
## 707 1090.1163 167.4419
## 708 1090.1163 167.4419
## 709 1090.1163 167.4419
## 710 1090.1163 167.4419
## 711 1090.1163 167.4419
## 712 1090.1163 167.4419
## 713 1090.1163 167.4419
## 714 1090.1163 167.4419
## 715 1090.1163 167.4419
## 716 1090.1163 167.4419
## 717 1090.1163 167.4419
## 718 1090.1163 167.4419
## 719 1090.1163 167.4419
## 720 1090.1163 167.4419
## 721 545.0581 109.0116
## 722 545.0581 109.0116
## 723 545.0581 109.0116
## 724 545.0581 109.0116
## 725 545.0581 109.0116
## 726 545.0581 109.0116
## 727 545.0581 109.0116
## 728 545.0581 109.0116
## 729 545.0581 109.0116
## 730 545.0581 109.0116
## 731 545.0581 109.0116
## 732 545.0581 109.0116
## 733 545.0581 109.0116
## 734 545.0581 109.0116
## 735 545.0581 109.0116
## 736 545.0581 109.0116
## 737 545.0581 109.0116
## 738 545.0581 109.0116
## 739 545.0581 109.0116
## 740 545.0581 109.0116
## 741 545.0581 109.0116
## 742 545.0581 109.0116
## 743 545.0581 109.0116
## 744 545.0581 109.0116
## 745 545.0581 545.0581
## 746 545.0581 545.0581
## 747 545.0581 545.0581
## 748 545.0581 545.0581
## 749 545.0581 545.0581
## 750 545.0581 545.0581
## 751 545.0581 545.0581
## 752 545.0581 545.0581
## 753 545.0581 545.0581
## 754 545.0581 545.0581
## 755 545.0581 545.0581
## 756 545.0581 545.0581
## 757 545.0581 545.0581
## 758 545.0581 545.0581
## 759 545.0581 545.0581
## 760 545.0581 545.0581
## 761 545.0581 545.0581
## 762 545.0581 545.0581
## 763 545.0581 545.0581
## 764 545.0581 545.0581
## 765 545.0581 545.0581
## 766 545.0581 545.0581
## 767 545.0581 545.0581
## 768 545.0581 545.0581
## 769 2494.1860 5161.0465
## 770 2494.1860 5161.0465
## 771 2494.1860 5161.0465
## 772 2494.1860 5161.0465
## 773 2494.1860 5161.0465
## 774 2494.1860 5161.0465
## 775 2494.1860 5161.0465
## 776 2494.1860 5161.0465
## 777 2494.1860 5161.0465
## 778 2494.1860 5161.0465
## 779 2494.1860 5161.0465
## 780 2494.1860 5161.0465
## 781 2494.1860 5161.0465
## 782 2494.1860 5161.0465
## 783 2494.1860 5161.0465
## 784 2494.1860 5161.0465
## 785 2494.1860 5161.0465
## 786 2494.1860 5161.0465
## 787 2494.1860 5161.0465
## 788 2494.1860 5161.0465
## 789 2494.1860 5161.0465
## 790 2494.1860 5161.0465
## 791 2494.1860 5161.0465
## 792 2494.1860 5161.0465
## 793 2372.0930 4037.7907
## 794 2372.0930 4037.7907
## 795 2372.0930 4037.7907
## 796 2372.0930 4037.7907
## 797 2372.0930 4037.7907
## 798 2372.0930 4037.7907
## 799 2372.0930 4037.7907
## 800 2372.0930 4037.7907
## 801 2372.0930 4037.7907
## 802 2372.0930 4037.7907
## 803 2372.0930 4037.7907
## 804 2372.0930 4037.7907
## 805 2372.0930 4037.7907
## 806 2372.0930 4037.7907
## 807 2372.0930 4037.7907
## 808 2372.0930 4037.7907
## 809 2372.0930 4037.7907
## 810 2372.0930 4037.7907
## 811 2372.0930 4037.7907
## 812 2372.0930 4037.7907
## 813 2372.0930 4037.7907
## 814 2372.0930 4037.7907
## 815 2372.0930 4037.7907
## 816 2372.0930 4037.7907
## 817 0.0000 566.8605
## 818 0.0000 566.8605
## 819 0.0000 566.8605
## 820 0.0000 566.8605
## 821 0.0000 566.8605
## 822 0.0000 566.8605
## 823 0.0000 566.8605
## 824 0.0000 566.8605
## 825 0.0000 566.8605
## 826 0.0000 566.8605
## 827 0.0000 566.8605
## 828 0.0000 566.8605
## 829 0.0000 566.8605
## 830 0.0000 566.8605
## 831 0.0000 566.8605
## 832 0.0000 566.8605
## 833 0.0000 566.8605
## 834 0.0000 566.8605
## 835 0.0000 566.8605
## 836 0.0000 566.8605
## 837 0.0000 566.8605
## 838 0.0000 566.8605
## 839 0.0000 566.8605
## 840 0.0000 566.8605
## 841 0.0000 2180.2326
## 842 0.0000 2180.2326
## 843 0.0000 2180.2326
## 844 0.0000 2180.2326
## 845 0.0000 2180.2326
## 846 0.0000 2180.2326
## 847 0.0000 2180.2326
## 848 0.0000 2180.2326
## 849 0.0000 2180.2326
## 850 0.0000 2180.2326
## 851 0.0000 2180.2326
## 852 0.0000 2180.2326
## 853 0.0000 2180.2326
## 854 0.0000 2180.2326
## 855 0.0000 2180.2326
## 856 0.0000 2180.2326
## 857 0.0000 2180.2326
## 858 0.0000 2180.2326
## 859 0.0000 2180.2326
## 860 0.0000 2180.2326
## 861 0.0000 2180.2326
## 862 0.0000 2180.2326
## 863 0.0000 2180.2326
## 864 0.0000 2180.2326
## 865 1526.1628 1939.5349
## 866 1526.1628 1939.5349
## 867 1526.1628 1939.5349
## 868 1526.1628 1939.5349
## 869 1526.1628 1939.5349
## 870 1526.1628 1939.5349
## 871 1526.1628 1939.5349
## 872 1526.1628 1939.5349
## 873 1526.1628 1939.5349
## 874 1526.1628 1939.5349
## 875 1526.1628 1939.5349
## 876 1526.1628 1939.5349
## 877 1526.1628 1939.5349
## 878 1526.1628 1939.5349
## 879 1526.1628 1939.5349
## 880 1526.1628 1939.5349
## 881 1526.1628 1939.5349
## 882 1526.1628 1939.5349
## 883 1526.1628 1939.5349
## 884 1526.1628 1939.5349
## 885 1526.1628 1939.5349
## 886 1526.1628 1939.5349
## 887 1526.1628 1939.5349
## 888 1526.1628 1939.5349
## 889 1875.0000 1990.1163
## 890 1875.0000 1990.1163
## 891 1875.0000 1990.1163
## 892 1875.0000 1990.1163
## 893 1875.0000 1990.1163
## 894 1875.0000 1990.1163
## 895 1875.0000 1990.1163
## 896 1875.0000 1990.1163
## 897 1875.0000 1990.1163
## 898 1875.0000 1990.1163
## 899 1875.0000 1990.1163
## 900 1875.0000 1990.1163
## 901 1875.0000 1990.1163
## 902 1875.0000 1990.1163
## 903 1875.0000 1990.1163
## 904 1875.0000 1990.1163
## 905 1875.0000 1990.1163
## 906 1875.0000 1990.1163
## 907 1875.0000 1990.1163
## 908 1875.0000 1990.1163
## 909 1875.0000 1990.1163
## 910 1875.0000 1990.1163
## 911 1875.0000 1990.1163
## 912 1875.0000 1990.1163
## 913 1521.8023 109.0116
## 914 1521.8023 109.0116
## 915 1521.8023 109.0116
## 916 1521.8023 109.0116
## 917 1521.8023 109.0116
## 918 1521.8023 109.0116
## 919 1521.8023 109.0116
## 920 1521.8023 109.0116
## 921 1521.8023 109.0116
## 922 1521.8023 109.0116
## 923 1521.8023 109.0116
## 924 1521.8023 109.0116
## 925 1521.8023 109.0116
## 926 1521.8023 109.0116
## 927 1521.8023 109.0116
## 928 1521.8023 109.0116
## 929 1521.8023 109.0116
## 930 1521.8023 109.0116
## 931 1521.8023 109.0116
## 932 1521.8023 109.0116
## 933 1521.8023 109.0116
## 934 1521.8023 109.0116
## 935 1521.8023 109.0116
## 936 1521.8023 109.0116
## 937 545.0581 562.5000
## 938 545.0581 562.5000
## 939 545.0581 562.5000
## 940 545.0581 562.5000
## 941 545.0581 562.5000
## 942 545.0581 562.5000
## 943 545.0581 562.5000
## 944 545.0581 562.5000
## 945 545.0581 562.5000
## 946 545.0581 562.5000
## 947 545.0581 562.5000
## 948 545.0581 562.5000
## 949 545.0581 562.5000
## 950 545.0581 562.5000
## 951 545.0581 562.5000
## 952 545.0581 562.5000
## 953 545.0581 562.5000
## 954 545.0581 562.5000
## 955 545.0581 562.5000
## 956 545.0581 562.5000
## 957 545.0581 562.5000
## 958 545.0581 562.5000
## 959 545.0581 562.5000
## 960 545.0581 562.5000
## 961 2494.1860 5161.0465
## 962 2494.1860 5161.0465
## 963 2494.1860 5161.0465
## 964 2494.1860 5161.0465
## 965 2494.1860 5161.0465
## 966 2494.1860 5161.0465
## 967 2494.1860 5161.0465
## 968 2494.1860 5161.0465
## 969 2494.1860 5161.0465
## 970 2494.1860 5161.0465
## 971 2494.1860 5161.0465
## 972 2494.1860 5161.0465
## 973 2494.1860 5161.0465
## 974 2494.1860 5161.0465
## 975 2494.1860 5161.0465
## 976 2494.1860 5161.0465
## 977 2494.1860 5161.0465
## 978 2494.1860 5161.0465
## 979 2494.1860 5161.0465
## 980 2494.1860 5161.0465
## 981 2494.1860 5161.0465
## 982 2494.1860 5161.0465
## 983 2494.1860 5161.0465
## 984 2494.1860 5161.0465
## 985 129.0698 852.9070
## 986 129.0698 852.9070
## 987 129.0698 852.9070
## 988 129.0698 852.9070
## 989 129.0698 852.9070
## 990 129.0698 852.9070
## 991 129.0698 852.9070
## 992 129.0698 852.9070
## 993 129.0698 852.9070
## 994 129.0698 852.9070
## 995 129.0698 852.9070
## 996 129.0698 852.9070
## 997 129.0698 852.9070
## 998 129.0698 852.9070
## 999 129.0698 852.9070
## 1000 129.0698 852.9070
## 1001 129.0698 852.9070
## 1002 129.0698 852.9070
## 1003 129.0698 852.9070
## 1004 129.0698 852.9070
## 1005 129.0698 852.9070
## 1006 129.0698 852.9070
## 1007 129.0698 852.9070
## 1008 129.0698 852.9070
## 1009 282.5581 1974.4186
## 1010 282.5581 1974.4186
## 1011 282.5581 1974.4186
## 1012 282.5581 1974.4186
## 1013 282.5581 1974.4186
## 1014 282.5581 1974.4186
## 1015 282.5581 1974.4186
## 1016 282.5581 1974.4186
## 1017 282.5581 1974.4186
## 1018 282.5581 1974.4186
## 1019 282.5581 1974.4186
## 1020 282.5581 1974.4186
## 1021 282.5581 1974.4186
## 1022 282.5581 1974.4186
## 1023 282.5581 1974.4186
## 1024 282.5581 1974.4186
## 1025 282.5581 1974.4186
## 1026 282.5581 1974.4186
## 1027 282.5581 1974.4186
## 1028 282.5581 1974.4186
## 1029 282.5581 1974.4186
## 1030 282.5581 1974.4186
## 1031 282.5581 1974.4186
## 1032 282.5581 1974.4186
## 1033 0.0000 2019.7674
## 1034 0.0000 2019.7674
## 1035 0.0000 2019.7674
## 1036 0.0000 2019.7674
## 1037 0.0000 2019.7674
## 1038 0.0000 2019.7674
## 1039 0.0000 2019.7674
## 1040 0.0000 2019.7674
## 1041 0.0000 2019.7674
## 1042 0.0000 2019.7674
## 1043 0.0000 2019.7674
## 1044 0.0000 2019.7674
## 1045 0.0000 2019.7674
## 1046 0.0000 2019.7674
## 1047 0.0000 2019.7674
## 1048 0.0000 2019.7674
## 1049 0.0000 2019.7674
## 1050 0.0000 2019.7674
## 1051 0.0000 2019.7674
## 1052 0.0000 2019.7674
## 1053 0.0000 2019.7674
## 1054 0.0000 2019.7674
## 1055 0.0000 2019.7674
## 1056 0.0000 2019.7674
## 1057 0.0000 2572.6744
## 1058 0.0000 2572.6744
## 1059 0.0000 2572.6744
## 1060 0.0000 2572.6744
## 1061 0.0000 2572.6744
## 1062 0.0000 2572.6744
## 1063 0.0000 2572.6744
## 1064 0.0000 2572.6744
## 1065 0.0000 2572.6744
## 1066 0.0000 2572.6744
## 1067 0.0000 2572.6744
## 1068 0.0000 2572.6744
## 1069 0.0000 2572.6744
## 1070 0.0000 2572.6744
## 1071 0.0000 2572.6744
## 1072 0.0000 2572.6744
## 1073 0.0000 2572.6744
## 1074 0.0000 2572.6744
## 1075 0.0000 2572.6744
## 1076 0.0000 2572.6744
## 1077 0.0000 2572.6744
## 1078 0.0000 2572.6744
## 1079 0.0000 2572.6744
## 1080 0.0000 2572.6744
## 1081 0.0000 610.4651
## 1082 0.0000 610.4651
## 1083 0.0000 610.4651
## 1084 0.0000 610.4651
## 1085 0.0000 610.4651
## 1086 0.0000 610.4651
## 1087 0.0000 610.4651
## 1088 0.0000 610.4651
## 1089 0.0000 610.4651
## 1090 0.0000 610.4651
## 1091 0.0000 610.4651
## 1092 0.0000 610.4651
## 1093 0.0000 610.4651
## 1094 0.0000 610.4651
## 1095 0.0000 610.4651
## 1096 0.0000 610.4651
## 1097 0.0000 610.4651
## 1098 0.0000 610.4651
## 1099 0.0000 610.4651
## 1100 0.0000 610.4651
## 1101 0.0000 610.4651
## 1102 0.0000 610.4651
## 1103 0.0000 610.4651
## 1104 0.0000 610.4651
## 1105 545.0581 0.0000
## 1106 545.0581 0.0000
## 1107 545.0581 0.0000
## 1108 545.0581 0.0000
## 1109 545.0581 0.0000
## 1110 545.0581 0.0000
## 1111 545.0581 0.0000
## 1112 545.0581 0.0000
## 1113 545.0581 0.0000
## 1114 545.0581 0.0000
## 1115 545.0581 0.0000
## 1116 545.0581 0.0000
## 1117 545.0581 0.0000
## 1118 545.0581 0.0000
## 1119 545.0581 0.0000
## 1120 545.0581 0.0000
## 1121 545.0581 0.0000
## 1122 545.0581 0.0000
## 1123 545.0581 0.0000
## 1124 545.0581 0.0000
## 1125 545.0581 0.0000
## 1126 545.0581 0.0000
## 1127 545.0581 0.0000
## 1128 545.0581 0.0000
## 1129 1630.8140 422.9651
## 1130 1630.8140 422.9651
## 1131 1630.8140 422.9651
## 1132 1630.8140 422.9651
## 1133 1630.8140 422.9651
## 1134 1630.8140 422.9651
## 1135 1630.8140 422.9651
## 1136 1630.8140 422.9651
## 1137 1630.8140 422.9651
## 1138 1630.8140 422.9651
## 1139 1630.8140 422.9651
## 1140 1630.8140 422.9651
## 1141 1630.8140 422.9651
## 1142 1630.8140 422.9651
## 1143 1630.8140 422.9651
## 1144 1630.8140 422.9651
## 1145 1630.8140 422.9651
## 1146 1630.8140 422.9651
## 1147 1630.8140 422.9651
## 1148 1630.8140 422.9651
## 1149 1630.8140 422.9651
## 1150 1630.8140 422.9651
## 1151 1630.8140 422.9651
## 1152 1630.8140 422.9651
## 1153 2494.1860 5161.0465
## 1154 2494.1860 5161.0465
## 1155 2494.1860 5161.0465
## 1156 2494.1860 5161.0465
## 1157 2494.1860 5161.0465
## 1158 2494.1860 5161.0465
## 1159 2494.1860 5161.0465
## 1160 2494.1860 5161.0465
## 1161 2494.1860 5161.0465
## 1162 2494.1860 5161.0465
## 1163 2494.1860 5161.0465
## 1164 2494.1860 5161.0465
## 1165 2494.1860 5161.0465
## 1166 2494.1860 5161.0465
## 1167 2494.1860 5161.0465
## 1168 2494.1860 5161.0465
## 1169 2494.1860 5161.0465
## 1170 2494.1860 5161.0465
## 1171 2494.1860 5161.0465
## 1172 2494.1860 5161.0465
## 1173 2494.1860 5161.0465
## 1174 2494.1860 5161.0465
## 1175 2494.1860 5161.0465
## 1176 2494.1860 5161.0465
## 1177 1350.0000 6573.8372
## 1178 1350.0000 6573.8372
## 1179 1350.0000 6573.8372
## 1180 1350.0000 6573.8372
## 1181 1350.0000 6573.8372
## 1182 1350.0000 6573.8372
## 1183 1350.0000 6573.8372
## 1184 1350.0000 6573.8372
## 1185 1350.0000 6573.8372
## 1186 1350.0000 6573.8372
## 1187 1350.0000 6573.8372
## 1188 1350.0000 6573.8372
## 1189 1350.0000 6573.8372
## 1190 1350.0000 6573.8372
## 1191 1350.0000 6573.8372
## 1192 1350.0000 6573.8372
## 1193 1350.0000 6573.8372
## 1194 1350.0000 6573.8372
## 1195 1350.0000 6573.8372
## 1196 1350.0000 6573.8372
## 1197 1350.0000 6573.8372
## 1198 1350.0000 6573.8372
## 1199 1350.0000 6573.8372
## 1200 1350.0000 6573.8372
## 1201 282.5581 334.8837
## 1202 282.5581 334.8837
## 1203 282.5581 334.8837
## 1204 282.5581 334.8837
## 1205 282.5581 334.8837
## 1206 282.5581 334.8837
## 1207 282.5581 334.8837
## 1208 282.5581 334.8837
## 1209 282.5581 334.8837
## 1210 282.5581 334.8837
## 1211 282.5581 334.8837
## 1212 282.5581 334.8837
## 1213 282.5581 334.8837
## 1214 282.5581 334.8837
## 1215 282.5581 334.8837
## 1216 282.5581 334.8837
## 1217 282.5581 334.8837
## 1218 282.5581 334.8837
## 1219 282.5581 334.8837
## 1220 282.5581 334.8837
## 1221 282.5581 334.8837
## 1222 282.5581 334.8837
## 1223 282.5581 334.8837
## 1224 282.5581 334.8837
## 1225 0.0000 3702.9070
## 1226 0.0000 3702.9070
## 1227 0.0000 3702.9070
## 1228 0.0000 3702.9070
## 1229 0.0000 3702.9070
## 1230 0.0000 3702.9070
## 1231 0.0000 3702.9070
## 1232 0.0000 3702.9070
## 1233 0.0000 3702.9070
## 1234 0.0000 3702.9070
## 1235 0.0000 3702.9070
## 1236 0.0000 3702.9070
## 1237 0.0000 3702.9070
## 1238 0.0000 3702.9070
## 1239 0.0000 3702.9070
## 1240 0.0000 3702.9070
## 1241 0.0000 3702.9070
## 1242 0.0000 3702.9070
## 1243 0.0000 3702.9070
## 1244 0.0000 3702.9070
## 1245 0.0000 3702.9070
## 1246 0.0000 3702.9070
## 1247 0.0000 3702.9070
## 1248 0.0000 3702.9070
## 1249 0.0000 1988.3721
## 1250 0.0000 1988.3721
## 1251 0.0000 1988.3721
## 1252 0.0000 1988.3721
## 1253 0.0000 1988.3721
## 1254 0.0000 1988.3721
## 1255 0.0000 1988.3721
## 1256 0.0000 1988.3721
## 1257 0.0000 1988.3721
## 1258 0.0000 1988.3721
## 1259 0.0000 1988.3721
## 1260 0.0000 1988.3721
## 1261 0.0000 1988.3721
## 1262 0.0000 1988.3721
## 1263 0.0000 1988.3721
## 1264 0.0000 1988.3721
## 1265 0.0000 1988.3721
## 1266 0.0000 1988.3721
## 1267 0.0000 1988.3721
## 1268 0.0000 1988.3721
## 1269 0.0000 1988.3721
## 1270 0.0000 1988.3721
## 1271 0.0000 1988.3721
## 1272 0.0000 1988.3721
## 1273 0.0000 1883.7209
## 1274 0.0000 1883.7209
## 1275 0.0000 1883.7209
## 1276 0.0000 1883.7209
## 1277 0.0000 1883.7209
## 1278 0.0000 1883.7209
## 1279 0.0000 1883.7209
## 1280 0.0000 1883.7209
## 1281 0.0000 1883.7209
## 1282 0.0000 1883.7209
## 1283 0.0000 1883.7209
## 1284 0.0000 1883.7209
## 1285 0.0000 1883.7209
## 1286 0.0000 1883.7209
## 1287 0.0000 1883.7209
## 1288 0.0000 1883.7209
## 1289 0.0000 1883.7209
## 1290 0.0000 1883.7209
## 1291 0.0000 1883.7209
## 1292 0.0000 1883.7209
## 1293 0.0000 1883.7209
## 1294 0.0000 1883.7209
## 1295 0.0000 1883.7209
## 1296 0.0000 1883.7209
## 1297 0.0000 911.3372
## 1298 0.0000 911.3372
## 1299 0.0000 911.3372
## 1300 0.0000 911.3372
## 1301 0.0000 911.3372
## 1302 0.0000 911.3372
## 1303 0.0000 911.3372
## 1304 0.0000 911.3372
## 1305 0.0000 911.3372
## 1306 0.0000 911.3372
## 1307 0.0000 911.3372
## 1308 0.0000 911.3372
## 1309 0.0000 911.3372
## 1310 0.0000 911.3372
## 1311 0.0000 911.3372
## 1312 0.0000 911.3372
## 1313 0.0000 911.3372
## 1314 0.0000 911.3372
## 1315 0.0000 911.3372
## 1316 0.0000 911.3372
## 1317 0.0000 911.3372
## 1318 0.0000 911.3372
## 1319 0.0000 911.3372
## 1320 0.0000 911.3372
## 1321 545.0581 0.0000
## 1322 545.0581 0.0000
## 1323 545.0581 0.0000
## 1324 545.0581 0.0000
## 1325 545.0581 0.0000
## 1326 545.0581 0.0000
## 1327 545.0581 0.0000
## 1328 545.0581 0.0000
## 1329 545.0581 0.0000
## 1330 545.0581 0.0000
## 1331 545.0581 0.0000
## 1332 545.0581 0.0000
## 1333 545.0581 0.0000
## 1334 545.0581 0.0000
## 1335 545.0581 0.0000
## 1336 545.0581 0.0000
## 1337 545.0581 0.0000
## 1338 545.0581 0.0000
## 1339 545.0581 0.0000
## 1340 545.0581 0.0000
## 1341 545.0581 0.0000
## 1342 545.0581 0.0000
## 1343 545.0581 0.0000
## 1344 545.0581 0.0000
## 1345 2494.1860 5161.0465
## 1346 2494.1860 5161.0465
## 1347 2494.1860 5161.0465
## 1348 2494.1860 5161.0465
## 1349 2494.1860 5161.0465
## 1350 2494.1860 5161.0465
## 1351 2494.1860 5161.0465
## 1352 2494.1860 5161.0465
## 1353 2494.1860 5161.0465
## 1354 2494.1860 5161.0465
## 1355 2494.1860 5161.0465
## 1356 2494.1860 5161.0465
## 1357 2494.1860 5161.0465
## 1358 2494.1860 5161.0465
## 1359 2494.1860 5161.0465
## 1360 2494.1860 5161.0465
## 1361 2494.1860 5161.0465
## 1362 2494.1860 5161.0465
## 1363 2494.1860 5161.0465
## 1364 2494.1860 5161.0465
## 1365 2494.1860 5161.0465
## 1366 2494.1860 5161.0465
## 1367 2494.1860 5161.0465
## 1368 2494.1860 5161.0465
## 1369 2100.0000 1768.6047
## 1370 2100.0000 1768.6047
## 1371 2100.0000 1768.6047
## 1372 2100.0000 1768.6047
## 1373 2100.0000 1768.6047
## 1374 2100.0000 1768.6047
## 1375 2100.0000 1768.6047
## 1376 2100.0000 1768.6047
## 1377 2100.0000 1768.6047
## 1378 2100.0000 1768.6047
## 1379 2100.0000 1768.6047
## 1380 2100.0000 1768.6047
## 1381 2100.0000 1768.6047
## 1382 2100.0000 1768.6047
## 1383 2100.0000 1768.6047
## 1384 2100.0000 1768.6047
## 1385 2100.0000 1768.6047
## 1386 2100.0000 1768.6047
## 1387 2100.0000 1768.6047
## 1388 2100.0000 1768.6047
## 1389 2100.0000 1768.6047
## 1390 2100.0000 1768.6047
## 1391 2100.0000 1768.6047
## 1392 2100.0000 1768.6047
## 1393 526.7442 875.5814
## 1394 526.7442 875.5814
## 1395 526.7442 875.5814
## 1396 526.7442 875.5814
## 1397 526.7442 875.5814
## 1398 526.7442 875.5814
## 1399 526.7442 875.5814
## 1400 526.7442 875.5814
## 1401 526.7442 875.5814
## 1402 526.7442 875.5814
## 1403 526.7442 875.5814
## 1404 526.7442 875.5814
## 1405 526.7442 875.5814
## 1406 526.7442 875.5814
## 1407 526.7442 875.5814
## 1408 526.7442 875.5814
## 1409 526.7442 875.5814
## 1410 526.7442 875.5814
## 1411 526.7442 875.5814
## 1412 526.7442 875.5814
## 1413 526.7442 875.5814
## 1414 526.7442 875.5814
## 1415 526.7442 875.5814
## 1416 526.7442 875.5814
## 1417 837.2093 2743.6047
## 1418 837.2093 2743.6047
## 1419 837.2093 2743.6047
## 1420 837.2093 2743.6047
## 1421 837.2093 2743.6047
## 1422 837.2093 2743.6047
## 1423 837.2093 2743.6047
## 1424 837.2093 2743.6047
## 1425 837.2093 2743.6047
## 1426 837.2093 2743.6047
## 1427 837.2093 2743.6047
## 1428 837.2093 2743.6047
## 1429 837.2093 2743.6047
## 1430 837.2093 2743.6047
## 1431 837.2093 2743.6047
## 1432 837.2093 2743.6047
## 1433 837.2093 2743.6047
## 1434 837.2093 2743.6047
## 1435 837.2093 2743.6047
## 1436 837.2093 2743.6047
## 1437 837.2093 2743.6047
## 1438 837.2093 2743.6047
## 1439 837.2093 2743.6047
## 1440 837.2093 2743.6047
## 1441 0.0000 1273.2558
## 1442 0.0000 1273.2558
## 1443 0.0000 1273.2558
## 1444 0.0000 1273.2558
## 1445 0.0000 1273.2558
## 1446 0.0000 1273.2558
## 1447 0.0000 1273.2558
## 1448 0.0000 1273.2558
## 1449 0.0000 1273.2558
## 1450 0.0000 1273.2558
## 1451 0.0000 1273.2558
## 1452 0.0000 1273.2558
## 1453 0.0000 1273.2558
## 1454 0.0000 1273.2558
## 1455 0.0000 1273.2558
## 1456 0.0000 1273.2558
## 1457 0.0000 1273.2558
## 1458 0.0000 1273.2558
## 1459 0.0000 1273.2558
## 1460 0.0000 1273.2558
## 1461 0.0000 1273.2558
## 1462 0.0000 1273.2558
## 1463 0.0000 1273.2558
## 1464 0.0000 1273.2558
## 1465 0.0000 3697.6744
## 1466 0.0000 3697.6744
## 1467 0.0000 3697.6744
## 1468 0.0000 3697.6744
## 1469 0.0000 3697.6744
## 1470 0.0000 3697.6744
## 1471 0.0000 3697.6744
## 1472 0.0000 3697.6744
## 1473 0.0000 3697.6744
## 1474 0.0000 3697.6744
## 1475 0.0000 3697.6744
## 1476 0.0000 3697.6744
## 1477 0.0000 3697.6744
## 1478 0.0000 3697.6744
## 1479 0.0000 3697.6744
## 1480 0.0000 3697.6744
## 1481 0.0000 3697.6744
## 1482 0.0000 3697.6744
## 1483 0.0000 3697.6744
## 1484 0.0000 3697.6744
## 1485 0.0000 3697.6744
## 1486 0.0000 3697.6744
## 1487 0.0000 3697.6744
## 1488 0.0000 3697.6744
## 1489 545.0581 244.1860
## 1490 545.0581 244.1860
## 1491 545.0581 244.1860
## 1492 545.0581 244.1860
## 1493 545.0581 244.1860
## 1494 545.0581 244.1860
## 1495 545.0581 244.1860
## 1496 545.0581 244.1860
## 1497 545.0581 244.1860
## 1498 545.0581 244.1860
## 1499 545.0581 244.1860
## 1500 545.0581 244.1860
## 1501 545.0581 244.1860
## 1502 545.0581 244.1860
## 1503 545.0581 244.1860
## 1504 545.0581 244.1860
## 1505 545.0581 244.1860
## 1506 545.0581 244.1860
## 1507 545.0581 244.1860
## 1508 545.0581 244.1860
## 1509 545.0581 244.1860
## 1510 545.0581 244.1860
## 1511 545.0581 244.1860
## 1512 545.0581 244.1860
## 1513 1212.2093 414.2442
## 1514 1212.2093 414.2442
## 1515 1212.2093 414.2442
## 1516 1212.2093 414.2442
## 1517 1212.2093 414.2442
## 1518 1212.2093 414.2442
## 1519 1212.2093 414.2442
## 1520 1212.2093 414.2442
## 1521 1212.2093 414.2442
## 1522 1212.2093 414.2442
## 1523 1212.2093 414.2442
## 1524 1212.2093 414.2442
## 1525 1212.2093 414.2442
## 1526 1212.2093 414.2442
## 1527 1212.2093 414.2442
## 1528 1212.2093 414.2442
## 1529 1212.2093 414.2442
## 1530 1212.2093 414.2442
## 1531 1212.2093 414.2442
## 1532 1212.2093 414.2442
## 1533 1212.2093 414.2442
## 1534 1212.2093 414.2442
## 1535 1212.2093 414.2442
## 1536 1212.2093 414.2442
## 1537 2494.1860 5161.0465
## 1538 2494.1860 5161.0465
## 1539 2494.1860 5161.0465
## 1540 2494.1860 5161.0465
## 1541 2494.1860 5161.0465
## 1542 2494.1860 5161.0465
## 1543 2494.1860 5161.0465
## 1544 2494.1860 5161.0465
## 1545 2494.1860 5161.0465
## 1546 2494.1860 5161.0465
## 1547 2494.1860 5161.0465
## 1548 2494.1860 5161.0465
## 1549 2494.1860 5161.0465
## 1550 2494.1860 5161.0465
## 1551 2494.1860 5161.0465
## 1552 2494.1860 5161.0465
## 1553 2494.1860 5161.0465
## 1554 2494.1860 5161.0465
## 1555 2494.1860 5161.0465
## 1556 2494.1860 5161.0465
## 1557 2494.1860 5161.0465
## 1558 2494.1860 5161.0465
## 1559 2494.1860 5161.0465
## 1560 2494.1860 5161.0465
## 1561 129.0698 3347.0930
## 1562 129.0698 3347.0930
## 1563 129.0698 3347.0930
## 1564 129.0698 3347.0930
## 1565 129.0698 3347.0930
## 1566 129.0698 3347.0930
## 1567 129.0698 3347.0930
## 1568 129.0698 3347.0930
## 1569 129.0698 3347.0930
## 1570 129.0698 3347.0930
## 1571 129.0698 3347.0930
## 1572 129.0698 3347.0930
## 1573 129.0698 3347.0930
## 1574 129.0698 3347.0930
## 1575 129.0698 3347.0930
## 1576 129.0698 3347.0930
## 1577 129.0698 3347.0930
## 1578 129.0698 3347.0930
## 1579 129.0698 3347.0930
## 1580 129.0698 3347.0930
## 1581 129.0698 3347.0930
## 1582 129.0698 3347.0930
## 1583 129.0698 3347.0930
## 1584 129.0698 3347.0930
## 1585 282.5581 3169.1860
## 1586 282.5581 3169.1860
## 1587 282.5581 3169.1860
## 1588 282.5581 3169.1860
## 1589 282.5581 3169.1860
## 1590 282.5581 3169.1860
## 1591 282.5581 3169.1860
## 1592 282.5581 3169.1860
## 1593 282.5581 3169.1860
## 1594 282.5581 3169.1860
## 1595 282.5581 3169.1860
## 1596 282.5581 3169.1860
## 1597 282.5581 3169.1860
## 1598 282.5581 3169.1860
## 1599 282.5581 3169.1860
## 1600 282.5581 3169.1860
## 1601 282.5581 3169.1860
## 1602 282.5581 3169.1860
## 1603 282.5581 3169.1860
## 1604 282.5581 3169.1860
## 1605 282.5581 3169.1860
## 1606 282.5581 3169.1860
## 1607 282.5581 3169.1860
## 1608 282.5581 3169.1860
## 1609 0.0000 650.5814
## 1610 0.0000 650.5814
## 1611 0.0000 650.5814
## 1612 0.0000 650.5814
## 1613 0.0000 650.5814
## 1614 0.0000 650.5814
## 1615 0.0000 650.5814
## 1616 0.0000 650.5814
## 1617 0.0000 650.5814
## 1618 0.0000 650.5814
## 1619 0.0000 650.5814
## 1620 0.0000 650.5814
## 1621 0.0000 650.5814
## 1622 0.0000 650.5814
## 1623 0.0000 650.5814
## 1624 0.0000 650.5814
## 1625 0.0000 650.5814
## 1626 0.0000 650.5814
## 1627 0.0000 650.5814
## 1628 0.0000 650.5814
## 1629 0.0000 650.5814
## 1630 0.0000 650.5814
## 1631 0.0000 650.5814
## 1632 0.0000 650.5814
## 1633 0.0000 218.0233
## 1634 0.0000 218.0233
## 1635 0.0000 218.0233
## 1636 0.0000 218.0233
## 1637 0.0000 218.0233
## 1638 0.0000 218.0233
## 1639 0.0000 218.0233
## 1640 0.0000 218.0233
## 1641 0.0000 218.0233
## 1642 0.0000 218.0233
## 1643 0.0000 218.0233
## 1644 0.0000 218.0233
## 1645 0.0000 218.0233
## 1646 0.0000 218.0233
## 1647 0.0000 218.0233
## 1648 0.0000 218.0233
## 1649 0.0000 218.0233
## 1650 0.0000 218.0233
## 1651 0.0000 218.0233
## 1652 0.0000 218.0233
## 1653 0.0000 218.0233
## 1654 0.0000 218.0233
## 1655 0.0000 218.0233
## 1656 0.0000 218.0233
## 1657 1090.1163 218.0233
## 1658 1090.1163 218.0233
## 1659 1090.1163 218.0233
## 1660 1090.1163 218.0233
## 1661 1090.1163 218.0233
## 1662 1090.1163 218.0233
## 1663 1090.1163 218.0233
## 1664 1090.1163 218.0233
## 1665 1090.1163 218.0233
## 1666 1090.1163 218.0233
## 1667 1090.1163 218.0233
## 1668 1090.1163 218.0233
## 1669 1090.1163 218.0233
## 1670 1090.1163 218.0233
## 1671 1090.1163 218.0233
## 1672 1090.1163 218.0233
## 1673 1090.1163 218.0233
## 1674 1090.1163 218.0233
## 1675 1090.1163 218.0233
## 1676 1090.1163 218.0233
## 1677 1090.1163 218.0233
## 1678 1090.1163 218.0233
## 1679 1090.1163 218.0233
## 1680 1090.1163 218.0233
## 1681 545.0581 0.0000
## 1682 545.0581 0.0000
## 1683 545.0581 0.0000
## 1684 545.0581 0.0000
## 1685 545.0581 0.0000
## 1686 545.0581 0.0000
## 1687 545.0581 0.0000
## 1688 545.0581 0.0000
## 1689 545.0581 0.0000
## 1690 545.0581 0.0000
## 1691 545.0581 0.0000
## 1692 545.0581 0.0000
## 1693 545.0581 0.0000
## 1694 545.0581 0.0000
## 1695 545.0581 0.0000
## 1696 545.0581 0.0000
## 1697 545.0581 0.0000
## 1698 545.0581 0.0000
## 1699 545.0581 0.0000
## 1700 545.0581 0.0000
## 1701 545.0581 0.0000
## 1702 545.0581 0.0000
## 1703 545.0581 0.0000
## 1704 545.0581 0.0000
## 1705 545.0581 436.0465
## 1706 545.0581 436.0465
## 1707 545.0581 436.0465
## 1708 545.0581 436.0465
## 1709 545.0581 436.0465
## 1710 545.0581 436.0465
## 1711 545.0581 436.0465
## 1712 545.0581 436.0465
## 1713 545.0581 436.0465
## 1714 545.0581 436.0465
## 1715 545.0581 436.0465
## 1716 545.0581 436.0465
## 1717 545.0581 436.0465
## 1718 545.0581 436.0465
## 1719 545.0581 436.0465
## 1720 545.0581 436.0465
## 1721 545.0581 436.0465
## 1722 545.0581 436.0465
## 1723 545.0581 436.0465
## 1724 545.0581 436.0465
## 1725 545.0581 436.0465
## 1726 545.0581 436.0465
## 1727 545.0581 436.0465
## 1728 545.0581 436.0465
## 1729 2494.1860 5161.0465
## 1730 2494.1860 5161.0465
## 1731 2494.1860 5161.0465
## 1732 2494.1860 5161.0465
## 1733 2494.1860 5161.0465
## 1734 2494.1860 5161.0465
## 1735 2494.1860 5161.0465
## 1736 2494.1860 5161.0465
## 1737 2494.1860 5161.0465
## 1738 2494.1860 5161.0465
## 1739 2494.1860 5161.0465
## 1740 2494.1860 5161.0465
## 1741 2494.1860 5161.0465
## 1742 2494.1860 5161.0465
## 1743 2494.1860 5161.0465
## 1744 2494.1860 5161.0465
## 1745 2494.1860 5161.0465
## 1746 2494.1860 5161.0465
## 1747 2494.1860 5161.0465
## 1748 2494.1860 5161.0465
## 1749 2494.1860 5161.0465
## 1750 2494.1860 5161.0465
## 1751 2494.1860 5161.0465
## 1752 2494.1860 5161.0465
## 1753 2283.1395 4890.6977
## 1754 2283.1395 4890.6977
## 1755 2283.1395 4890.6977
## 1756 2283.1395 4890.6977
## 1757 2283.1395 4890.6977
## 1758 2283.1395 4890.6977
## 1759 2283.1395 4890.6977
## 1760 2283.1395 4890.6977
## 1761 2283.1395 4890.6977
## 1762 2283.1395 4890.6977
## 1763 2283.1395 4890.6977
## 1764 2283.1395 4890.6977
## 1765 2283.1395 4890.6977
## 1766 2283.1395 4890.6977
## 1767 2283.1395 4890.6977
## 1768 2283.1395 4890.6977
## 1769 2283.1395 4890.6977
## 1770 2283.1395 4890.6977
## 1771 2283.1395 4890.6977
## 1772 2283.1395 4890.6977
## 1773 2283.1395 4890.6977
## 1774 2283.1395 4890.6977
## 1775 2283.1395 4890.6977
## 1776 2283.1395 4890.6977
## 1777 282.5581 570.3488
## 1778 282.5581 570.3488
## 1779 282.5581 570.3488
## 1780 282.5581 570.3488
## 1781 282.5581 570.3488
## 1782 282.5581 570.3488
## 1783 282.5581 570.3488
## 1784 282.5581 570.3488
## 1785 282.5581 570.3488
## 1786 282.5581 570.3488
## 1787 282.5581 570.3488
## 1788 282.5581 570.3488
## 1789 282.5581 570.3488
## 1790 282.5581 570.3488
## 1791 282.5581 570.3488
## 1792 282.5581 570.3488
## 1793 282.5581 570.3488
## 1794 282.5581 570.3488
## 1795 282.5581 570.3488
## 1796 282.5581 570.3488
## 1797 282.5581 570.3488
## 1798 282.5581 570.3488
## 1799 282.5581 570.3488
## 1800 282.5581 570.3488
## 1801 0.0000 2830.8140
## 1802 0.0000 2830.8140
## 1803 0.0000 2830.8140
## 1804 0.0000 2830.8140
## 1805 0.0000 2830.8140
## 1806 0.0000 2830.8140
## 1807 0.0000 2830.8140
## 1808 0.0000 2830.8140
## 1809 0.0000 2830.8140
## 1810 0.0000 2830.8140
## 1811 0.0000 2830.8140
## 1812 0.0000 2830.8140
## 1813 0.0000 2830.8140
## 1814 0.0000 2830.8140
## 1815 0.0000 2830.8140
## 1816 0.0000 2830.8140
## 1817 0.0000 2830.8140
## 1818 0.0000 2830.8140
## 1819 0.0000 2830.8140
## 1820 0.0000 2830.8140
## 1821 0.0000 2830.8140
## 1822 0.0000 2830.8140
## 1823 0.0000 2830.8140
## 1824 0.0000 2830.8140
## 1825 1090.1163 1735.4651
## 1826 1090.1163 1735.4651
## 1827 1090.1163 1735.4651
## 1828 1090.1163 1735.4651
## 1829 1090.1163 1735.4651
## 1830 1090.1163 1735.4651
## 1831 1090.1163 1735.4651
## 1832 1090.1163 1735.4651
## 1833 1090.1163 1735.4651
## 1834 1090.1163 1735.4651
## 1835 1090.1163 1735.4651
## 1836 1090.1163 1735.4651
## 1837 1090.1163 1735.4651
## 1838 1090.1163 1735.4651
## 1839 1090.1163 1735.4651
## 1840 1090.1163 1735.4651
## 1841 1090.1163 1735.4651
## 1842 1090.1163 1735.4651
## 1843 1090.1163 1735.4651
## 1844 1090.1163 1735.4651
## 1845 1090.1163 1735.4651
## 1846 1090.1163 1735.4651
## 1847 1090.1163 1735.4651
## 1848 1090.1163 1735.4651
## 1849 1875.0000 2040.6977
## 1850 1875.0000 2040.6977
## 1851 1875.0000 2040.6977
## 1852 1875.0000 2040.6977
## 1853 1875.0000 2040.6977
## 1854 1875.0000 2040.6977
## 1855 1875.0000 2040.6977
## 1856 1875.0000 2040.6977
## 1857 1875.0000 2040.6977
## 1858 1875.0000 2040.6977
## 1859 1875.0000 2040.6977
## 1860 1875.0000 2040.6977
## 1861 1875.0000 2040.6977
## 1862 1875.0000 2040.6977
## 1863 1875.0000 2040.6977
## 1864 1875.0000 2040.6977
## 1865 1875.0000 2040.6977
## 1866 1875.0000 2040.6977
## 1867 1875.0000 2040.6977
## 1868 1875.0000 2040.6977
## 1869 1875.0000 2040.6977
## 1870 1875.0000 2040.6977
## 1871 1875.0000 2040.6977
## 1872 1875.0000 2040.6977
## 1873 1521.8023 0.0000
## 1874 1521.8023 0.0000
## 1875 1521.8023 0.0000
## 1876 1521.8023 0.0000
## 1877 1521.8023 0.0000
## 1878 1521.8023 0.0000
## 1879 1521.8023 0.0000
## 1880 1521.8023 0.0000
## 1881 1521.8023 0.0000
## 1882 1521.8023 0.0000
## 1883 1521.8023 0.0000
## 1884 1521.8023 0.0000
## 1885 1521.8023 0.0000
## 1886 1521.8023 0.0000
## 1887 1521.8023 0.0000
## 1888 1521.8023 0.0000
## 1889 1521.8023 0.0000
## 1890 1521.8023 0.0000
## 1891 1521.8023 0.0000
## 1892 1521.8023 0.0000
## 1893 1521.8023 0.0000
## 1894 1521.8023 0.0000
## 1895 1521.8023 0.0000
## 1896 1521.8023 0.0000
## 1897 545.0581 453.4884
## 1898 545.0581 453.4884
## 1899 545.0581 453.4884
## 1900 545.0581 453.4884
## 1901 545.0581 453.4884
## 1902 545.0581 453.4884
## 1903 545.0581 453.4884
## 1904 545.0581 453.4884
## 1905 545.0581 453.4884
## 1906 545.0581 453.4884
## 1907 545.0581 453.4884
## 1908 545.0581 453.4884
## 1909 545.0581 453.4884
## 1910 545.0581 453.4884
## 1911 545.0581 453.4884
## 1912 545.0581 453.4884
## 1913 545.0581 453.4884
## 1914 545.0581 453.4884
## 1915 545.0581 453.4884
## 1916 545.0581 453.4884
## 1917 545.0581 453.4884
## 1918 545.0581 453.4884
## 1919 545.0581 453.4884
## 1920 545.0581 453.4884
## 1921 2494.1860 5161.0465
## 1922 2494.1860 5161.0465
## 1923 2494.1860 5161.0465
## 1924 2494.1860 5161.0465
## 1925 2494.1860 5161.0465
## 1926 2494.1860 5161.0465
## 1927 2494.1860 5161.0465
## 1928 2494.1860 5161.0465
## 1929 2494.1860 5161.0465
## 1930 2494.1860 5161.0465
## 1931 2494.1860 5161.0465
## 1932 2494.1860 5161.0465
## 1933 2494.1860 5161.0465
## 1934 2494.1860 5161.0465
## 1935 2494.1860 5161.0465
## 1936 2494.1860 5161.0465
## 1937 2494.1860 5161.0465
## 1938 2494.1860 5161.0465
## 1939 2494.1860 5161.0465
## 1940 2494.1860 5161.0465
## 1941 2494.1860 5161.0465
## 1942 2494.1860 5161.0465
## 1943 2494.1860 5161.0465
## 1944 2494.1860 5161.0465
## 1945 0.0000 0.0000
## 1946 0.0000 0.0000
## 1947 0.0000 0.0000
## 1948 0.0000 0.0000
## 1949 0.0000 0.0000
## 1950 0.0000 0.0000
## 1951 0.0000 0.0000
## 1952 0.0000 0.0000
## 1953 0.0000 0.0000
## 1954 0.0000 0.0000
## 1955 0.0000 0.0000
## 1956 0.0000 0.0000
## 1957 0.0000 0.0000
## 1958 0.0000 0.0000
## 1959 0.0000 0.0000
## 1960 0.0000 0.0000
## 1961 0.0000 0.0000
## 1962 0.0000 0.0000
## 1963 0.0000 0.0000
## 1964 0.0000 0.0000
## 1965 0.0000 0.0000
## 1966 0.0000 0.0000
## 1967 0.0000 0.0000
## 1968 0.0000 0.0000
## 1969 0.0000 1854.0698
## 1970 0.0000 1854.0698
## 1971 0.0000 1854.0698
## 1972 0.0000 1854.0698
## 1973 0.0000 1854.0698
## 1974 0.0000 1854.0698
## 1975 0.0000 1854.0698
## 1976 0.0000 1854.0698
## 1977 0.0000 1854.0698
## 1978 0.0000 1854.0698
## 1979 0.0000 1854.0698
## 1980 0.0000 1854.0698
## 1981 0.0000 1854.0698
## 1982 0.0000 1854.0698
## 1983 0.0000 1854.0698
## 1984 0.0000 1854.0698
## 1985 0.0000 1854.0698
## 1986 0.0000 1854.0698
## 1987 0.0000 1854.0698
## 1988 0.0000 1854.0698
## 1989 0.0000 1854.0698
## 1990 0.0000 1854.0698
## 1991 0.0000 1854.0698
## 1992 0.0000 1854.0698
## 1993 0.0000 1852.3256
## 1994 0.0000 1852.3256
## 1995 0.0000 1852.3256
## 1996 0.0000 1852.3256
## 1997 0.0000 1852.3256
## 1998 0.0000 1852.3256
## 1999 0.0000 1852.3256
## 2000 0.0000 1852.3256
## 2001 0.0000 1852.3256
## 2002 0.0000 1852.3256
## 2003 0.0000 1852.3256
## 2004 0.0000 1852.3256
## 2005 0.0000 1852.3256
## 2006 0.0000 1852.3256
## 2007 0.0000 1852.3256
## 2008 0.0000 1852.3256
## 2009 0.0000 1852.3256
## 2010 0.0000 1852.3256
## 2011 0.0000 1852.3256
## 2012 0.0000 1852.3256
## 2013 0.0000 1852.3256
## 2014 0.0000 1852.3256
## 2015 0.0000 1852.3256
## 2016 0.0000 1852.3256
## 2017 0.0000 2572.6744
## 2018 0.0000 2572.6744
## 2019 0.0000 2572.6744
## 2020 0.0000 2572.6744
## 2021 0.0000 2572.6744
## 2022 0.0000 2572.6744
## 2023 0.0000 2572.6744
## 2024 0.0000 2572.6744
## 2025 0.0000 2572.6744
## 2026 0.0000 2572.6744
## 2027 0.0000 2572.6744
## 2028 0.0000 2572.6744
## 2029 0.0000 2572.6744
## 2030 0.0000 2572.6744
## 2031 0.0000 2572.6744
## 2032 0.0000 2572.6744
## 2033 0.0000 2572.6744
## 2034 0.0000 2572.6744
## 2035 0.0000 2572.6744
## 2036 0.0000 2572.6744
## 2037 0.0000 2572.6744
## 2038 0.0000 2572.6744
## 2039 0.0000 2572.6744
## 2040 0.0000 2572.6744
## 2041 0.0000 392.4419
## 2042 0.0000 392.4419
## 2043 0.0000 392.4419
## 2044 0.0000 392.4419
## 2045 0.0000 392.4419
## 2046 0.0000 392.4419
## 2047 0.0000 392.4419
## 2048 0.0000 392.4419
## 2049 0.0000 392.4419
## 2050 0.0000 392.4419
## 2051 0.0000 392.4419
## 2052 0.0000 392.4419
## 2053 0.0000 392.4419
## 2054 0.0000 392.4419
## 2055 0.0000 392.4419
## 2056 0.0000 392.4419
## 2057 0.0000 392.4419
## 2058 0.0000 392.4419
## 2059 0.0000 392.4419
## 2060 0.0000 392.4419
## 2061 0.0000 392.4419
## 2062 0.0000 392.4419
## 2063 0.0000 392.4419
## 2064 0.0000 392.4419
## 2065 545.0581 0.0000
## 2066 545.0581 0.0000
## 2067 545.0581 0.0000
## 2068 545.0581 0.0000
## 2069 545.0581 0.0000
## 2070 545.0581 0.0000
## 2071 545.0581 0.0000
## 2072 545.0581 0.0000
## 2073 545.0581 0.0000
## 2074 545.0581 0.0000
## 2075 545.0581 0.0000
## 2076 545.0581 0.0000
## 2077 545.0581 0.0000
## 2078 545.0581 0.0000
## 2079 545.0581 0.0000
## 2080 545.0581 0.0000
## 2081 545.0581 0.0000
## 2082 545.0581 0.0000
## 2083 545.0581 0.0000
## 2084 545.0581 0.0000
## 2085 545.0581 0.0000
## 2086 545.0581 0.0000
## 2087 545.0581 0.0000
## 2088 545.0581 0.0000
## 2089 1630.8140 422.9651
## 2090 1630.8140 422.9651
## 2091 1630.8140 422.9651
## 2092 1630.8140 422.9651
## 2093 1630.8140 422.9651
## 2094 1630.8140 422.9651
## 2095 1630.8140 422.9651
## 2096 1630.8140 422.9651
## 2097 1630.8140 422.9651
## 2098 1630.8140 422.9651
## 2099 1630.8140 422.9651
## 2100 1630.8140 422.9651
## 2101 1630.8140 422.9651
## 2102 1630.8140 422.9651
## 2103 1630.8140 422.9651
## 2104 1630.8140 422.9651
## 2105 1630.8140 422.9651
## 2106 1630.8140 422.9651
## 2107 1630.8140 422.9651
## 2108 1630.8140 422.9651
## 2109 1630.8140 422.9651
## 2110 1630.8140 422.9651
## 2111 1630.8140 422.9651
## 2112 1630.8140 422.9651
## 2113 2494.1860 5161.0465
## 2114 2494.1860 5161.0465
## 2115 2494.1860 5161.0465
## 2116 2494.1860 5161.0465
## 2117 2494.1860 5161.0465
## 2118 2494.1860 5161.0465
## 2119 2494.1860 5161.0465
## 2120 2494.1860 5161.0465
## 2121 2494.1860 5161.0465
## 2122 2494.1860 5161.0465
## 2123 2494.1860 5161.0465
## 2124 2494.1860 5161.0465
## 2125 2494.1860 5161.0465
## 2126 2494.1860 5161.0465
## 2127 2494.1860 5161.0465
## 2128 2494.1860 5161.0465
## 2129 2494.1860 5161.0465
## 2130 2494.1860 5161.0465
## 2131 2494.1860 5161.0465
## 2132 2494.1860 5161.0465
## 2133 2494.1860 5161.0465
## 2134 2494.1860 5161.0465
## 2135 2494.1860 5161.0465
## 2136 2494.1860 5161.0465
## 2137 1220.9302 5720.9302
## 2138 1220.9302 5720.9302
## 2139 1220.9302 5720.9302
## 2140 1220.9302 5720.9302
## 2141 1220.9302 5720.9302
## 2142 1220.9302 5720.9302
## 2143 1220.9302 5720.9302
## 2144 1220.9302 5720.9302
## 2145 1220.9302 5720.9302
## 2146 1220.9302 5720.9302
## 2147 1220.9302 5720.9302
## 2148 1220.9302 5720.9302
## 2149 1220.9302 5720.9302
## 2150 1220.9302 5720.9302
## 2151 1220.9302 5720.9302
## 2152 1220.9302 5720.9302
## 2153 1220.9302 5720.9302
## 2154 1220.9302 5720.9302
## 2155 1220.9302 5720.9302
## 2156 1220.9302 5720.9302
## 2157 1220.9302 5720.9302
## 2158 1220.9302 5720.9302
## 2159 1220.9302 5720.9302
## 2160 1220.9302 5720.9302
## 2161 0.0000 214.5349
## 2162 0.0000 214.5349
## 2163 0.0000 214.5349
## 2164 0.0000 214.5349
## 2165 0.0000 214.5349
## 2166 0.0000 214.5349
## 2167 0.0000 214.5349
## 2168 0.0000 214.5349
## 2169 0.0000 214.5349
## 2170 0.0000 214.5349
## 2171 0.0000 214.5349
## 2172 0.0000 214.5349
## 2173 0.0000 214.5349
## 2174 0.0000 214.5349
## 2175 0.0000 214.5349
## 2176 0.0000 214.5349
## 2177 0.0000 214.5349
## 2178 0.0000 214.5349
## 2179 0.0000 214.5349
## 2180 0.0000 214.5349
## 2181 0.0000 214.5349
## 2182 0.0000 214.5349
## 2183 0.0000 214.5349
## 2184 0.0000 214.5349
## 2185 0.0000 3535.4651
## 2186 0.0000 3535.4651
## 2187 0.0000 3535.4651
## 2188 0.0000 3535.4651
## 2189 0.0000 3535.4651
## 2190 0.0000 3535.4651
## 2191 0.0000 3535.4651
## 2192 0.0000 3535.4651
## 2193 0.0000 3535.4651
## 2194 0.0000 3535.4651
## 2195 0.0000 3535.4651
## 2196 0.0000 3535.4651
## 2197 0.0000 3535.4651
## 2198 0.0000 3535.4651
## 2199 0.0000 3535.4651
## 2200 0.0000 3535.4651
## 2201 0.0000 3535.4651
## 2202 0.0000 3535.4651
## 2203 0.0000 3535.4651
## 2204 0.0000 3535.4651
## 2205 0.0000 3535.4651
## 2206 0.0000 3535.4651
## 2207 0.0000 3535.4651
## 2208 0.0000 3535.4651
## 2209 0.0000 1988.3721
## 2210 0.0000 1988.3721
## 2211 0.0000 1988.3721
## 2212 0.0000 1988.3721
## 2213 0.0000 1988.3721
## 2214 0.0000 1988.3721
## 2215 0.0000 1988.3721
## 2216 0.0000 1988.3721
## 2217 0.0000 1988.3721
## 2218 0.0000 1988.3721
## 2219 0.0000 1988.3721
## 2220 0.0000 1988.3721
## 2221 0.0000 1988.3721
## 2222 0.0000 1988.3721
## 2223 0.0000 1988.3721
## 2224 0.0000 1988.3721
## 2225 0.0000 1988.3721
## 2226 0.0000 1988.3721
## 2227 0.0000 1988.3721
## 2228 0.0000 1988.3721
## 2229 0.0000 1988.3721
## 2230 0.0000 1988.3721
## 2231 0.0000 1988.3721
## 2232 0.0000 1988.3721
## 2233 0.0000 1665.6977
## 2234 0.0000 1665.6977
## 2235 0.0000 1665.6977
## 2236 0.0000 1665.6977
## 2237 0.0000 1665.6977
## 2238 0.0000 1665.6977
## 2239 0.0000 1665.6977
## 2240 0.0000 1665.6977
## 2241 0.0000 1665.6977
## 2242 0.0000 1665.6977
## 2243 0.0000 1665.6977
## 2244 0.0000 1665.6977
## 2245 0.0000 1665.6977
## 2246 0.0000 1665.6977
## 2247 0.0000 1665.6977
## 2248 0.0000 1665.6977
## 2249 0.0000 1665.6977
## 2250 0.0000 1665.6977
## 2251 0.0000 1665.6977
## 2252 0.0000 1665.6977
## 2253 0.0000 1665.6977
## 2254 0.0000 1665.6977
## 2255 0.0000 1665.6977
## 2256 0.0000 1665.6977
## 2257 0.0000 911.3372
## 2258 0.0000 911.3372
## 2259 0.0000 911.3372
## 2260 0.0000 911.3372
## 2261 0.0000 911.3372
## 2262 0.0000 911.3372
## 2263 0.0000 911.3372
## 2264 0.0000 911.3372
## 2265 0.0000 911.3372
## 2266 0.0000 911.3372
## 2267 0.0000 911.3372
## 2268 0.0000 911.3372
## 2269 0.0000 911.3372
## 2270 0.0000 911.3372
## 2271 0.0000 911.3372
## 2272 0.0000 911.3372
## 2273 0.0000 911.3372
## 2274 0.0000 911.3372
## 2275 0.0000 911.3372
## 2276 0.0000 911.3372
## 2277 0.0000 911.3372
## 2278 0.0000 911.3372
## 2279 0.0000 911.3372
## 2280 0.0000 911.3372
## 2281 545.0581 0.0000
## 2282 545.0581 0.0000
## 2283 545.0581 0.0000
## 2284 545.0581 0.0000
## 2285 545.0581 0.0000
## 2286 545.0581 0.0000
## 2287 545.0581 0.0000
## 2288 545.0581 0.0000
## 2289 545.0581 0.0000
## 2290 545.0581 0.0000
## 2291 545.0581 0.0000
## 2292 545.0581 0.0000
## 2293 545.0581 0.0000
## 2294 545.0581 0.0000
## 2295 545.0581 0.0000
## 2296 545.0581 0.0000
## 2297 545.0581 0.0000
## 2298 545.0581 0.0000
## 2299 545.0581 0.0000
## 2300 545.0581 0.0000
## 2301 545.0581 0.0000
## 2302 545.0581 0.0000
## 2303 545.0581 0.0000
## 2304 545.0581 0.0000
## 2305 2494.1860 5161.0465
## 2306 2494.1860 5161.0465
## 2307 2494.1860 5161.0465
## 2308 2494.1860 5161.0465
## 2309 2494.1860 5161.0465
## 2310 2494.1860 5161.0465
## 2311 2494.1860 5161.0465
## 2312 2494.1860 5161.0465
## 2313 2494.1860 5161.0465
## 2314 2494.1860 5161.0465
## 2315 2494.1860 5161.0465
## 2316 2494.1860 5161.0465
## 2317 2494.1860 5161.0465
## 2318 2494.1860 5161.0465
## 2319 2494.1860 5161.0465
## 2320 2494.1860 5161.0465
## 2321 2494.1860 5161.0465
## 2322 2494.1860 5161.0465
## 2323 2494.1860 5161.0465
## 2324 2494.1860 5161.0465
## 2325 2494.1860 5161.0465
## 2326 2494.1860 5161.0465
## 2327 2494.1860 5161.0465
## 2328 2494.1860 5161.0465
## 2329 1970.9302 915.6977
## 2330 1970.9302 915.6977
## 2331 1970.9302 915.6977
## 2332 1970.9302 915.6977
## 2333 1970.9302 915.6977
## 2334 1970.9302 915.6977
## 2335 1970.9302 915.6977
## 2336 1970.9302 915.6977
## 2337 1970.9302 915.6977
## 2338 1970.9302 915.6977
## 2339 1970.9302 915.6977
## 2340 1970.9302 915.6977
## 2341 1970.9302 915.6977
## 2342 1970.9302 915.6977
## 2343 1970.9302 915.6977
## 2344 1970.9302 915.6977
## 2345 1970.9302 915.6977
## 2346 1970.9302 915.6977
## 2347 1970.9302 915.6977
## 2348 1970.9302 915.6977
## 2349 1970.9302 915.6977
## 2350 1970.9302 915.6977
## 2351 1970.9302 915.6977
## 2352 1970.9302 915.6977
## 2353 244.1860 755.2326
## 2354 244.1860 755.2326
## 2355 244.1860 755.2326
## 2356 244.1860 755.2326
## 2357 244.1860 755.2326
## 2358 244.1860 755.2326
## 2359 244.1860 755.2326
## 2360 244.1860 755.2326
## 2361 244.1860 755.2326
## 2362 244.1860 755.2326
## 2363 244.1860 755.2326
## 2364 244.1860 755.2326
## 2365 244.1860 755.2326
## 2366 244.1860 755.2326
## 2367 244.1860 755.2326
## 2368 244.1860 755.2326
## 2369 244.1860 755.2326
## 2370 244.1860 755.2326
## 2371 244.1860 755.2326
## 2372 244.1860 755.2326
## 2373 244.1860 755.2326
## 2374 244.1860 755.2326
## 2375 244.1860 755.2326
## 2376 244.1860 755.2326
## 2377 837.2093 2576.1628
## 2378 837.2093 2576.1628
## 2379 837.2093 2576.1628
## 2380 837.2093 2576.1628
## 2381 837.2093 2576.1628
## 2382 837.2093 2576.1628
## 2383 837.2093 2576.1628
## 2384 837.2093 2576.1628
## 2385 837.2093 2576.1628
## 2386 837.2093 2576.1628
## 2387 837.2093 2576.1628
## 2388 837.2093 2576.1628
## 2389 837.2093 2576.1628
## 2390 837.2093 2576.1628
## 2391 837.2093 2576.1628
## 2392 837.2093 2576.1628
## 2393 837.2093 2576.1628
## 2394 837.2093 2576.1628
## 2395 837.2093 2576.1628
## 2396 837.2093 2576.1628
## 2397 837.2093 2576.1628
## 2398 837.2093 2576.1628
## 2399 837.2093 2576.1628
## 2400 837.2093 2576.1628
## 2401 0.0000 1273.2558
## 2402 0.0000 1273.2558
## 2403 0.0000 1273.2558
## 2404 0.0000 1273.2558
## 2405 0.0000 1273.2558
## 2406 0.0000 1273.2558
## 2407 0.0000 1273.2558
## 2408 0.0000 1273.2558
## 2409 0.0000 1273.2558
## 2410 0.0000 1273.2558
## 2411 0.0000 1273.2558
## 2412 0.0000 1273.2558
## 2413 0.0000 1273.2558
## 2414 0.0000 1273.2558
## 2415 0.0000 1273.2558
## 2416 0.0000 1273.2558
## 2417 0.0000 1273.2558
## 2418 0.0000 1273.2558
## 2419 0.0000 1273.2558
## 2420 0.0000 1273.2558
## 2421 0.0000 1273.2558
## 2422 0.0000 1273.2558
## 2423 0.0000 1273.2558
## 2424 0.0000 1273.2558
## 2425 0.0000 3479.6512
## 2426 0.0000 3479.6512
## 2427 0.0000 3479.6512
## 2428 0.0000 3479.6512
## 2429 0.0000 3479.6512
## 2430 0.0000 3479.6512
## 2431 0.0000 3479.6512
## 2432 0.0000 3479.6512
## 2433 0.0000 3479.6512
## 2434 0.0000 3479.6512
## 2435 0.0000 3479.6512
## 2436 0.0000 3479.6512
## 2437 0.0000 3479.6512
## 2438 0.0000 3479.6512
## 2439 0.0000 3479.6512
## 2440 0.0000 3479.6512
## 2441 0.0000 3479.6512
## 2442 0.0000 3479.6512
## 2443 0.0000 3479.6512
## 2444 0.0000 3479.6512
## 2445 0.0000 3479.6512
## 2446 0.0000 3479.6512
## 2447 0.0000 3479.6512
## 2448 0.0000 3479.6512
## 2449 545.0581 244.1860
## 2450 545.0581 244.1860
## 2451 545.0581 244.1860
## 2452 545.0581 244.1860
## 2453 545.0581 244.1860
## 2454 545.0581 244.1860
## 2455 545.0581 244.1860
## 2456 545.0581 244.1860
## 2457 545.0581 244.1860
## 2458 545.0581 244.1860
## 2459 545.0581 244.1860
## 2460 545.0581 244.1860
## 2461 545.0581 244.1860
## 2462 545.0581 244.1860
## 2463 545.0581 244.1860
## 2464 545.0581 244.1860
## 2465 545.0581 244.1860
## 2466 545.0581 244.1860
## 2467 545.0581 244.1860
## 2468 545.0581 244.1860
## 2469 545.0581 244.1860
## 2470 545.0581 244.1860
## 2471 545.0581 244.1860
## 2472 545.0581 244.1860
## 2473 1212.2093 414.2442
## 2474 1212.2093 414.2442
## 2475 1212.2093 414.2442
## 2476 1212.2093 414.2442
## 2477 1212.2093 414.2442
## 2478 1212.2093 414.2442
## 2479 1212.2093 414.2442
## 2480 1212.2093 414.2442
## 2481 1212.2093 414.2442
## 2482 1212.2093 414.2442
## 2483 1212.2093 414.2442
## 2484 1212.2093 414.2442
## 2485 1212.2093 414.2442
## 2486 1212.2093 414.2442
## 2487 1212.2093 414.2442
## 2488 1212.2093 414.2442
## 2489 1212.2093 414.2442
## 2490 1212.2093 414.2442
## 2491 1212.2093 414.2442
## 2492 1212.2093 414.2442
## 2493 1212.2093 414.2442
## 2494 1212.2093 414.2442
## 2495 1212.2093 414.2442
## 2496 1212.2093 414.2442
## 2497 2494.1860 5161.0465
## 2498 2494.1860 5161.0465
## 2499 2494.1860 5161.0465
## 2500 2494.1860 5161.0465
## 2501 2494.1860 5161.0465
## 2502 2494.1860 5161.0465
## 2503 2494.1860 5161.0465
## 2504 2494.1860 5161.0465
## 2505 2494.1860 5161.0465
## 2506 2494.1860 5161.0465
## 2507 2494.1860 5161.0465
## 2508 2494.1860 5161.0465
## 2509 2494.1860 5161.0465
## 2510 2494.1860 5161.0465
## 2511 2494.1860 5161.0465
## 2512 2494.1860 5161.0465
## 2513 2494.1860 5161.0465
## 2514 2494.1860 5161.0465
## 2515 2494.1860 5161.0465
## 2516 2494.1860 5161.0465
## 2517 2494.1860 5161.0465
## 2518 2494.1860 5161.0465
## 2519 2494.1860 5161.0465
## 2520 2494.1860 5161.0465
## 2521 0.0000 2494.1860
## 2522 0.0000 2494.1860
## 2523 0.0000 2494.1860
## 2524 0.0000 2494.1860
## 2525 0.0000 2494.1860
## 2526 0.0000 2494.1860
## 2527 0.0000 2494.1860
## 2528 0.0000 2494.1860
## 2529 0.0000 2494.1860
## 2530 0.0000 2494.1860
## 2531 0.0000 2494.1860
## 2532 0.0000 2494.1860
## 2533 0.0000 2494.1860
## 2534 0.0000 2494.1860
## 2535 0.0000 2494.1860
## 2536 0.0000 2494.1860
## 2537 0.0000 2494.1860
## 2538 0.0000 2494.1860
## 2539 0.0000 2494.1860
## 2540 0.0000 2494.1860
## 2541 0.0000 2494.1860
## 2542 0.0000 2494.1860
## 2543 0.0000 2494.1860
## 2544 0.0000 2494.1860
## 2545 0.0000 3048.8372
## 2546 0.0000 3048.8372
## 2547 0.0000 3048.8372
## 2548 0.0000 3048.8372
## 2549 0.0000 3048.8372
## 2550 0.0000 3048.8372
## 2551 0.0000 3048.8372
## 2552 0.0000 3048.8372
## 2553 0.0000 3048.8372
## 2554 0.0000 3048.8372
## 2555 0.0000 3048.8372
## 2556 0.0000 3048.8372
## 2557 0.0000 3048.8372
## 2558 0.0000 3048.8372
## 2559 0.0000 3048.8372
## 2560 0.0000 3048.8372
## 2561 0.0000 3048.8372
## 2562 0.0000 3048.8372
## 2563 0.0000 3048.8372
## 2564 0.0000 3048.8372
## 2565 0.0000 3048.8372
## 2566 0.0000 3048.8372
## 2567 0.0000 3048.8372
## 2568 0.0000 3048.8372
## 2569 0.0000 483.1395
## 2570 0.0000 483.1395
## 2571 0.0000 483.1395
## 2572 0.0000 483.1395
## 2573 0.0000 483.1395
## 2574 0.0000 483.1395
## 2575 0.0000 483.1395
## 2576 0.0000 483.1395
## 2577 0.0000 483.1395
## 2578 0.0000 483.1395
## 2579 0.0000 483.1395
## 2580 0.0000 483.1395
## 2581 0.0000 483.1395
## 2582 0.0000 483.1395
## 2583 0.0000 483.1395
## 2584 0.0000 483.1395
## 2585 0.0000 483.1395
## 2586 0.0000 483.1395
## 2587 0.0000 483.1395
## 2588 0.0000 483.1395
## 2589 0.0000 483.1395
## 2590 0.0000 483.1395
## 2591 0.0000 483.1395
## 2592 0.0000 483.1395
## 2593 0.0000 218.0233
## 2594 0.0000 218.0233
## 2595 0.0000 218.0233
## 2596 0.0000 218.0233
## 2597 0.0000 218.0233
## 2598 0.0000 218.0233
## 2599 0.0000 218.0233
## 2600 0.0000 218.0233
## 2601 0.0000 218.0233
## 2602 0.0000 218.0233
## 2603 0.0000 218.0233
## 2604 0.0000 218.0233
## 2605 0.0000 218.0233
## 2606 0.0000 218.0233
## 2607 0.0000 218.0233
## 2608 0.0000 218.0233
## 2609 0.0000 218.0233
## 2610 0.0000 218.0233
## 2611 0.0000 218.0233
## 2612 0.0000 218.0233
## 2613 0.0000 218.0233
## 2614 0.0000 218.0233
## 2615 0.0000 218.0233
## 2616 0.0000 218.0233
## 2617 1090.1163 0.0000
## 2618 1090.1163 0.0000
## 2619 1090.1163 0.0000
## 2620 1090.1163 0.0000
## 2621 1090.1163 0.0000
## 2622 1090.1163 0.0000
## 2623 1090.1163 0.0000
## 2624 1090.1163 0.0000
## 2625 1090.1163 0.0000
## 2626 1090.1163 0.0000
## 2627 1090.1163 0.0000
## 2628 1090.1163 0.0000
## 2629 1090.1163 0.0000
## 2630 1090.1163 0.0000
## 2631 1090.1163 0.0000
## 2632 1090.1163 0.0000
## 2633 1090.1163 0.0000
## 2634 1090.1163 0.0000
## 2635 1090.1163 0.0000
## 2636 1090.1163 0.0000
## 2637 1090.1163 0.0000
## 2638 1090.1163 0.0000
## 2639 1090.1163 0.0000
## 2640 1090.1163 0.0000
## 2641 545.0581 0.0000
## 2642 545.0581 0.0000
## 2643 545.0581 0.0000
## 2644 545.0581 0.0000
## 2645 545.0581 0.0000
## 2646 545.0581 0.0000
## 2647 545.0581 0.0000
## 2648 545.0581 0.0000
## 2649 545.0581 0.0000
## 2650 545.0581 0.0000
## 2651 545.0581 0.0000
## 2652 545.0581 0.0000
## 2653 545.0581 0.0000
## 2654 545.0581 0.0000
## 2655 545.0581 0.0000
## 2656 545.0581 0.0000
## 2657 545.0581 0.0000
## 2658 545.0581 0.0000
## 2659 545.0581 0.0000
## 2660 545.0581 0.0000
## 2661 545.0581 0.0000
## 2662 545.0581 0.0000
## 2663 545.0581 0.0000
## 2664 545.0581 0.0000
## 2665 545.0581 436.0465
## 2666 545.0581 436.0465
## 2667 545.0581 436.0465
## 2668 545.0581 436.0465
## 2669 545.0581 436.0465
## 2670 545.0581 436.0465
## 2671 545.0581 436.0465
## 2672 545.0581 436.0465
## 2673 545.0581 436.0465
## 2674 545.0581 436.0465
## 2675 545.0581 436.0465
## 2676 545.0581 436.0465
## 2677 545.0581 436.0465
## 2678 545.0581 436.0465
## 2679 545.0581 436.0465
## 2680 545.0581 436.0465
## 2681 545.0581 436.0465
## 2682 545.0581 436.0465
## 2683 545.0581 436.0465
## 2684 545.0581 436.0465
## 2685 545.0581 436.0465
## 2686 545.0581 436.0465
## 2687 545.0581 436.0465
## 2688 545.0581 436.0465
## 2689 2494.1860 5161.0465
## 2690 2494.1860 5161.0465
## 2691 2494.1860 5161.0465
## 2692 2494.1860 5161.0465
## 2693 2494.1860 5161.0465
## 2694 2494.1860 5161.0465
## 2695 2494.1860 5161.0465
## 2696 2494.1860 5161.0465
## 2697 2494.1860 5161.0465
## 2698 2494.1860 5161.0465
## 2699 2494.1860 5161.0465
## 2700 2494.1860 5161.0465
## 2701 2494.1860 5161.0465
## 2702 2494.1860 5161.0465
## 2703 2494.1860 5161.0465
## 2704 2494.1860 5161.0465
## 2705 2494.1860 5161.0465
## 2706 2494.1860 5161.0465
## 2707 2494.1860 5161.0465
## 2708 2494.1860 5161.0465
## 2709 2494.1860 5161.0465
## 2710 2494.1860 5161.0465
## 2711 2494.1860 5161.0465
## 2712 2494.1860 5161.0465
## 2713 2154.0698 4037.7907
## 2714 2154.0698 4037.7907
## 2715 2154.0698 4037.7907
## 2716 2154.0698 4037.7907
## 2717 2154.0698 4037.7907
## 2718 2154.0698 4037.7907
## 2719 2154.0698 4037.7907
## 2720 2154.0698 4037.7907
## 2721 2154.0698 4037.7907
## 2722 2154.0698 4037.7907
## 2723 2154.0698 4037.7907
## 2724 2154.0698 4037.7907
## 2725 2154.0698 4037.7907
## 2726 2154.0698 4037.7907
## 2727 2154.0698 4037.7907
## 2728 2154.0698 4037.7907
## 2729 2154.0698 4037.7907
## 2730 2154.0698 4037.7907
## 2731 2154.0698 4037.7907
## 2732 2154.0698 4037.7907
## 2733 2154.0698 4037.7907
## 2734 2154.0698 4037.7907
## 2735 2154.0698 4037.7907
## 2736 2154.0698 4037.7907
## 2737 0.0000 450.0000
## 2738 0.0000 450.0000
## 2739 0.0000 450.0000
## 2740 0.0000 450.0000
## 2741 0.0000 450.0000
## 2742 0.0000 450.0000
## 2743 0.0000 450.0000
## 2744 0.0000 450.0000
## 2745 0.0000 450.0000
## 2746 0.0000 450.0000
## 2747 0.0000 450.0000
## 2748 0.0000 450.0000
## 2749 0.0000 450.0000
## 2750 0.0000 450.0000
## 2751 0.0000 450.0000
## 2752 0.0000 450.0000
## 2753 0.0000 450.0000
## 2754 0.0000 450.0000
## 2755 0.0000 450.0000
## 2756 0.0000 450.0000
## 2757 0.0000 450.0000
## 2758 0.0000 450.0000
## 2759 0.0000 450.0000
## 2760 0.0000 450.0000
## 2761 0.0000 2663.3721
## 2762 0.0000 2663.3721
## 2763 0.0000 2663.3721
## 2764 0.0000 2663.3721
## 2765 0.0000 2663.3721
## 2766 0.0000 2663.3721
## 2767 0.0000 2663.3721
## 2768 0.0000 2663.3721
## 2769 0.0000 2663.3721
## 2770 0.0000 2663.3721
## 2771 0.0000 2663.3721
## 2772 0.0000 2663.3721
## 2773 0.0000 2663.3721
## 2774 0.0000 2663.3721
## 2775 0.0000 2663.3721
## 2776 0.0000 2663.3721
## 2777 0.0000 2663.3721
## 2778 0.0000 2663.3721
## 2779 0.0000 2663.3721
## 2780 0.0000 2663.3721
## 2781 0.0000 2663.3721
## 2782 0.0000 2663.3721
## 2783 0.0000 2663.3721
## 2784 0.0000 2663.3721
## 2785 1090.1163 1735.4651
## 2786 1090.1163 1735.4651
## 2787 1090.1163 1735.4651
## 2788 1090.1163 1735.4651
## 2789 1090.1163 1735.4651
## 2790 1090.1163 1735.4651
## 2791 1090.1163 1735.4651
## 2792 1090.1163 1735.4651
## 2793 1090.1163 1735.4651
## 2794 1090.1163 1735.4651
## 2795 1090.1163 1735.4651
## 2796 1090.1163 1735.4651
## 2797 1090.1163 1735.4651
## 2798 1090.1163 1735.4651
## 2799 1090.1163 1735.4651
## 2800 1090.1163 1735.4651
## 2801 1090.1163 1735.4651
## 2802 1090.1163 1735.4651
## 2803 1090.1163 1735.4651
## 2804 1090.1163 1735.4651
## 2805 1090.1163 1735.4651
## 2806 1090.1163 1735.4651
## 2807 1090.1163 1735.4651
## 2808 1090.1163 1735.4651
## 2809 1875.0000 1822.6744
## 2810 1875.0000 1822.6744
## 2811 1875.0000 1822.6744
## 2812 1875.0000 1822.6744
## 2813 1875.0000 1822.6744
## 2814 1875.0000 1822.6744
## 2815 1875.0000 1822.6744
## 2816 1875.0000 1822.6744
## 2817 1875.0000 1822.6744
## 2818 1875.0000 1822.6744
## 2819 1875.0000 1822.6744
## 2820 1875.0000 1822.6744
## 2821 1875.0000 1822.6744
## 2822 1875.0000 1822.6744
## 2823 1875.0000 1822.6744
## 2824 1875.0000 1822.6744
## 2825 1875.0000 1822.6744
## 2826 1875.0000 1822.6744
## 2827 1875.0000 1822.6744
## 2828 1875.0000 1822.6744
## 2829 1875.0000 1822.6744
## 2830 1875.0000 1822.6744
## 2831 1875.0000 1822.6744
## 2832 1875.0000 1822.6744
## 2833 1521.8023 0.0000
## 2834 1521.8023 0.0000
## 2835 1521.8023 0.0000
## 2836 1521.8023 0.0000
## 2837 1521.8023 0.0000
## 2838 1521.8023 0.0000
## 2839 1521.8023 0.0000
## 2840 1521.8023 0.0000
## 2841 1521.8023 0.0000
## 2842 1521.8023 0.0000
## 2843 1521.8023 0.0000
## 2844 1521.8023 0.0000
## 2845 1521.8023 0.0000
## 2846 1521.8023 0.0000
## 2847 1521.8023 0.0000
## 2848 1521.8023 0.0000
## 2849 1521.8023 0.0000
## 2850 1521.8023 0.0000
## 2851 1521.8023 0.0000
## 2852 1521.8023 0.0000
## 2853 1521.8023 0.0000
## 2854 1521.8023 0.0000
## 2855 1521.8023 0.0000
## 2856 1521.8023 0.0000
## 2857 545.0581 453.4884
## 2858 545.0581 453.4884
## 2859 545.0581 453.4884
## 2860 545.0581 453.4884
## 2861 545.0581 453.4884
## 2862 545.0581 453.4884
## 2863 545.0581 453.4884
## 2864 545.0581 453.4884
## 2865 545.0581 453.4884
## 2866 545.0581 453.4884
## 2867 545.0581 453.4884
## 2868 545.0581 453.4884
## 2869 545.0581 453.4884
## 2870 545.0581 453.4884
## 2871 545.0581 453.4884
## 2872 545.0581 453.4884
## 2873 545.0581 453.4884
## 2874 545.0581 453.4884
## 2875 545.0581 453.4884
## 2876 545.0581 453.4884
## 2877 545.0581 453.4884
## 2878 545.0581 453.4884
## 2879 545.0581 453.4884
## 2880 545.0581 453.4884
## 2881 2494.1860 5161.0465
## 2882 2494.1860 5161.0465
## 2883 2494.1860 5161.0465
## 2884 2494.1860 5161.0465
## 2885 2494.1860 5161.0465
## 2886 2494.1860 5161.0465
## 2887 2494.1860 5161.0465
## 2888 2494.1860 5161.0465
## 2889 2494.1860 5161.0465
## 2890 2494.1860 5161.0465
## 2891 2494.1860 5161.0465
## 2892 2494.1860 5161.0465
## 2893 2494.1860 5161.0465
## 2894 2494.1860 5161.0465
## 2895 2494.1860 5161.0465
## 2896 2494.1860 5161.0465
## 2897 2494.1860 5161.0465
## 2898 2494.1860 5161.0465
## 2899 2494.1860 5161.0465
## 2900 2494.1860 5161.0465
## 2901 2494.1860 5161.0465
## 2902 2494.1860 5161.0465
## 2903 2494.1860 5161.0465
## 2904 2494.1860 5161.0465
## 2905 0.0000 102.9070
## 2906 0.0000 102.9070
## 2907 0.0000 102.9070
## 2908 0.0000 102.9070
## 2909 0.0000 102.9070
## 2910 0.0000 102.9070
## 2911 0.0000 102.9070
## 2912 0.0000 102.9070
## 2913 0.0000 102.9070
## 2914 0.0000 102.9070
## 2915 0.0000 102.9070
## 2916 0.0000 102.9070
## 2917 0.0000 102.9070
## 2918 0.0000 102.9070
## 2919 0.0000 102.9070
## 2920 0.0000 102.9070
## 2921 0.0000 102.9070
## 2922 0.0000 102.9070
## 2923 0.0000 102.9070
## 2924 0.0000 102.9070
## 2925 0.0000 102.9070
## 2926 0.0000 102.9070
## 2927 0.0000 102.9070
## 2928 0.0000 102.9070
## 2929 218.0233 1838.3721
## 2930 218.0233 1838.3721
## 2931 218.0233 1838.3721
## 2932 218.0233 1838.3721
## 2933 218.0233 1838.3721
## 2934 218.0233 1838.3721
## 2935 218.0233 1838.3721
## 2936 218.0233 1838.3721
## 2937 218.0233 1838.3721
## 2938 218.0233 1838.3721
## 2939 218.0233 1838.3721
## 2940 218.0233 1838.3721
## 2941 218.0233 1838.3721
## 2942 218.0233 1838.3721
## 2943 218.0233 1838.3721
## 2944 218.0233 1838.3721
## 2945 218.0233 1838.3721
## 2946 218.0233 1838.3721
## 2947 218.0233 1838.3721
## 2948 218.0233 1838.3721
## 2949 218.0233 1838.3721
## 2950 218.0233 1838.3721
## 2951 218.0233 1838.3721
## 2952 218.0233 1838.3721
## 2953 0.0000 1369.1860
## 2954 0.0000 1369.1860
## 2955 0.0000 1369.1860
## 2956 0.0000 1369.1860
## 2957 0.0000 1369.1860
## 2958 0.0000 1369.1860
## 2959 0.0000 1369.1860
## 2960 0.0000 1369.1860
## 2961 0.0000 1369.1860
## 2962 0.0000 1369.1860
## 2963 0.0000 1369.1860
## 2964 0.0000 1369.1860
## 2965 0.0000 1369.1860
## 2966 0.0000 1369.1860
## 2967 0.0000 1369.1860
## 2968 0.0000 1369.1860
## 2969 0.0000 1369.1860
## 2970 0.0000 1369.1860
## 2971 0.0000 1369.1860
## 2972 0.0000 1369.1860
## 2973 0.0000 1369.1860
## 2974 0.0000 1369.1860
## 2975 0.0000 1369.1860
## 2976 0.0000 1369.1860
## 2977 0.0000 2532.5581
## 2978 0.0000 2532.5581
## 2979 0.0000 2532.5581
## 2980 0.0000 2532.5581
## 2981 0.0000 2532.5581
## 2982 0.0000 2532.5581
## 2983 0.0000 2532.5581
## 2984 0.0000 2532.5581
## 2985 0.0000 2532.5581
## 2986 0.0000 2532.5581
## 2987 0.0000 2532.5581
## 2988 0.0000 2532.5581
## 2989 0.0000 2532.5581
## 2990 0.0000 2532.5581
## 2991 0.0000 2532.5581
## 2992 0.0000 2532.5581
## 2993 0.0000 2532.5581
## 2994 0.0000 2532.5581
## 2995 0.0000 2532.5581
## 2996 0.0000 2532.5581
## 2997 0.0000 2532.5581
## 2998 0.0000 2532.5581
## 2999 0.0000 2532.5581
## 3000 0.0000 2532.5581
## 3001 0.0000 392.4419
## 3002 0.0000 392.4419
## 3003 0.0000 392.4419
## 3004 0.0000 392.4419
## 3005 0.0000 392.4419
## 3006 0.0000 392.4419
## 3007 0.0000 392.4419
## 3008 0.0000 392.4419
## 3009 0.0000 392.4419
## 3010 0.0000 392.4419
## 3011 0.0000 392.4419
## 3012 0.0000 392.4419
## 3013 0.0000 392.4419
## 3014 0.0000 392.4419
## 3015 0.0000 392.4419
## 3016 0.0000 392.4419
## 3017 0.0000 392.4419
## 3018 0.0000 392.4419
## 3019 0.0000 392.4419
## 3020 0.0000 392.4419
## 3021 0.0000 392.4419
## 3022 0.0000 392.4419
## 3023 0.0000 392.4419
## 3024 0.0000 392.4419
## 3025 545.0581 213.6628
## 3026 545.0581 213.6628
## 3027 545.0581 213.6628
## 3028 545.0581 213.6628
## 3029 545.0581 213.6628
## 3030 545.0581 213.6628
## 3031 545.0581 213.6628
## 3032 545.0581 213.6628
## 3033 545.0581 213.6628
## 3034 545.0581 213.6628
## 3035 545.0581 213.6628
## 3036 545.0581 213.6628
## 3037 545.0581 213.6628
## 3038 545.0581 213.6628
## 3039 545.0581 213.6628
## 3040 545.0581 213.6628
## 3041 545.0581 213.6628
## 3042 545.0581 213.6628
## 3043 545.0581 213.6628
## 3044 545.0581 213.6628
## 3045 545.0581 213.6628
## 3046 545.0581 213.6628
## 3047 545.0581 213.6628
## 3048 545.0581 213.6628
## 3049 1630.8140 504.0698
## 3050 1630.8140 504.0698
## 3051 1630.8140 504.0698
## 3052 1630.8140 504.0698
## 3053 1630.8140 504.0698
## 3054 1630.8140 504.0698
## 3055 1630.8140 504.0698
## 3056 1630.8140 504.0698
## 3057 1630.8140 504.0698
## 3058 1630.8140 504.0698
## 3059 1630.8140 504.0698
## 3060 1630.8140 504.0698
## 3061 1630.8140 504.0698
## 3062 1630.8140 504.0698
## 3063 1630.8140 504.0698
## 3064 1630.8140 504.0698
## 3065 1630.8140 504.0698
## 3066 1630.8140 504.0698
## 3067 1630.8140 504.0698
## 3068 1630.8140 504.0698
## 3069 1630.8140 504.0698
## 3070 1630.8140 504.0698
## 3071 1630.8140 504.0698
## 3072 1630.8140 504.0698
## 3073 2494.1860 5161.0465
## 3074 2494.1860 5161.0465
## 3075 2494.1860 5161.0465
## 3076 2494.1860 5161.0465
## 3077 2494.1860 5161.0465
## 3078 2494.1860 5161.0465
## 3079 2494.1860 5161.0465
## 3080 2494.1860 5161.0465
## 3081 2494.1860 5161.0465
## 3082 2494.1860 5161.0465
## 3083 2494.1860 5161.0465
## 3084 2494.1860 5161.0465
## 3085 2494.1860 5161.0465
## 3086 2494.1860 5161.0465
## 3087 2494.1860 5161.0465
## 3088 2494.1860 5161.0465
## 3089 2494.1860 5161.0465
## 3090 2494.1860 5161.0465
## 3091 2494.1860 5161.0465
## 3092 2494.1860 5161.0465
## 3093 2494.1860 5161.0465
## 3094 2494.1860 5161.0465
## 3095 2494.1860 5161.0465
## 3096 2494.1860 5161.0465
## 3097 1220.9302 5823.8372
## 3098 1220.9302 5823.8372
## 3099 1220.9302 5823.8372
## 3100 1220.9302 5823.8372
## 3101 1220.9302 5823.8372
## 3102 1220.9302 5823.8372
## 3103 1220.9302 5823.8372
## 3104 1220.9302 5823.8372
## 3105 1220.9302 5823.8372
## 3106 1220.9302 5823.8372
## 3107 1220.9302 5823.8372
## 3108 1220.9302 5823.8372
## 3109 1220.9302 5823.8372
## 3110 1220.9302 5823.8372
## 3111 1220.9302 5823.8372
## 3112 1220.9302 5823.8372
## 3113 1220.9302 5823.8372
## 3114 1220.9302 5823.8372
## 3115 1220.9302 5823.8372
## 3116 1220.9302 5823.8372
## 3117 1220.9302 5823.8372
## 3118 1220.9302 5823.8372
## 3119 1220.9302 5823.8372
## 3120 1220.9302 5823.8372
## 3121 218.0233 198.8372
## 3122 218.0233 198.8372
## 3123 218.0233 198.8372
## 3124 218.0233 198.8372
## 3125 218.0233 198.8372
## 3126 218.0233 198.8372
## 3127 218.0233 198.8372
## 3128 218.0233 198.8372
## 3129 218.0233 198.8372
## 3130 218.0233 198.8372
## 3131 218.0233 198.8372
## 3132 218.0233 198.8372
## 3133 218.0233 198.8372
## 3134 218.0233 198.8372
## 3135 218.0233 198.8372
## 3136 218.0233 198.8372
## 3137 218.0233 198.8372
## 3138 218.0233 198.8372
## 3139 218.0233 198.8372
## 3140 218.0233 198.8372
## 3141 218.0233 198.8372
## 3142 218.0233 198.8372
## 3143 218.0233 198.8372
## 3144 218.0233 198.8372
## 3145 0.0000 3052.3256
## 3146 0.0000 3052.3256
## 3147 0.0000 3052.3256
## 3148 0.0000 3052.3256
## 3149 0.0000 3052.3256
## 3150 0.0000 3052.3256
## 3151 0.0000 3052.3256
## 3152 0.0000 3052.3256
## 3153 0.0000 3052.3256
## 3154 0.0000 3052.3256
## 3155 0.0000 3052.3256
## 3156 0.0000 3052.3256
## 3157 0.0000 3052.3256
## 3158 0.0000 3052.3256
## 3159 0.0000 3052.3256
## 3160 0.0000 3052.3256
## 3161 0.0000 3052.3256
## 3162 0.0000 3052.3256
## 3163 0.0000 3052.3256
## 3164 0.0000 3052.3256
## 3165 0.0000 3052.3256
## 3166 0.0000 3052.3256
## 3167 0.0000 3052.3256
## 3168 0.0000 3052.3256
## 3169 0.0000 1948.2558
## 3170 0.0000 1948.2558
## 3171 0.0000 1948.2558
## 3172 0.0000 1948.2558
## 3173 0.0000 1948.2558
## 3174 0.0000 1948.2558
## 3175 0.0000 1948.2558
## 3176 0.0000 1948.2558
## 3177 0.0000 1948.2558
## 3178 0.0000 1948.2558
## 3179 0.0000 1948.2558
## 3180 0.0000 1948.2558
## 3181 0.0000 1948.2558
## 3182 0.0000 1948.2558
## 3183 0.0000 1948.2558
## 3184 0.0000 1948.2558
## 3185 0.0000 1948.2558
## 3186 0.0000 1948.2558
## 3187 0.0000 1948.2558
## 3188 0.0000 1948.2558
## 3189 0.0000 1948.2558
## 3190 0.0000 1948.2558
## 3191 0.0000 1948.2558
## 3192 0.0000 1948.2558
## 3193 0.0000 1665.6977
## 3194 0.0000 1665.6977
## 3195 0.0000 1665.6977
## 3196 0.0000 1665.6977
## 3197 0.0000 1665.6977
## 3198 0.0000 1665.6977
## 3199 0.0000 1665.6977
## 3200 0.0000 1665.6977
## 3201 0.0000 1665.6977
## 3202 0.0000 1665.6977
## 3203 0.0000 1665.6977
## 3204 0.0000 1665.6977
## 3205 0.0000 1665.6977
## 3206 0.0000 1665.6977
## 3207 0.0000 1665.6977
## 3208 0.0000 1665.6977
## 3209 0.0000 1665.6977
## 3210 0.0000 1665.6977
## 3211 0.0000 1665.6977
## 3212 0.0000 1665.6977
## 3213 0.0000 1665.6977
## 3214 0.0000 1665.6977
## 3215 0.0000 1665.6977
## 3216 0.0000 1665.6977
## 3217 0.0000 1125.0000
## 3218 0.0000 1125.0000
## 3219 0.0000 1125.0000
## 3220 0.0000 1125.0000
## 3221 0.0000 1125.0000
## 3222 0.0000 1125.0000
## 3223 0.0000 1125.0000
## 3224 0.0000 1125.0000
## 3225 0.0000 1125.0000
## total_metaecosystem_Pca_indiv total_metaecosystem_Spi_indiv
## 1 883.43023 635.75581
## 2 883.43023 635.75581
## 3 883.43023 635.75581
## 4 883.43023 635.75581
## 5 883.43023 635.75581
## 6 883.43023 635.75581
## 7 883.43023 635.75581
## 8 883.43023 635.75581
## 9 883.43023 635.75581
## 10 883.43023 635.75581
## 11 883.43023 635.75581
## 12 883.43023 635.75581
## 13 883.43023 635.75581
## 14 883.43023 635.75581
## 15 883.43023 635.75581
## 16 883.43023 635.75581
## 17 883.43023 635.75581
## 18 883.43023 635.75581
## 19 883.43023 635.75581
## 20 883.43023 635.75581
## 21 883.43023 635.75581
## 22 883.43023 635.75581
## 23 883.43023 635.75581
## 24 883.43023 635.75581
## 25 1854.06977 1055.23256
## 26 1854.06977 1055.23256
## 27 1854.06977 1055.23256
## 28 1854.06977 1055.23256
## 29 1854.06977 1055.23256
## 30 1854.06977 1055.23256
## 31 1854.06977 1055.23256
## 32 1854.06977 1055.23256
## 33 1854.06977 1055.23256
## 34 1854.06977 1055.23256
## 35 1854.06977 1055.23256
## 36 1854.06977 1055.23256
## 37 1854.06977 1055.23256
## 38 1854.06977 1055.23256
## 39 1854.06977 1055.23256
## 40 1854.06977 1055.23256
## 41 1854.06977 1055.23256
## 42 1854.06977 1055.23256
## 43 1854.06977 1055.23256
## 44 1854.06977 1055.23256
## 45 1854.06977 1055.23256
## 46 1854.06977 1055.23256
## 47 1854.06977 1055.23256
## 48 1854.06977 1055.23256
## 49 1189.53488 1090.11628
## 50 1189.53488 1090.11628
## 51 1189.53488 1090.11628
## 52 1189.53488 1090.11628
## 53 1189.53488 1090.11628
## 54 1189.53488 1090.11628
## 55 1189.53488 1090.11628
## 56 1189.53488 1090.11628
## 57 1189.53488 1090.11628
## 58 1189.53488 1090.11628
## 59 1189.53488 1090.11628
## 60 1189.53488 1090.11628
## 61 1189.53488 1090.11628
## 62 1189.53488 1090.11628
## 63 1189.53488 1090.11628
## 64 1189.53488 1090.11628
## 65 1189.53488 1090.11628
## 66 1189.53488 1090.11628
## 67 1189.53488 1090.11628
## 68 1189.53488 1090.11628
## 69 1189.53488 1090.11628
## 70 1189.53488 1090.11628
## 71 1189.53488 1090.11628
## 72 1189.53488 1090.11628
## 73 3783.13953 2180.23256
## 74 3783.13953 2180.23256
## 75 3783.13953 2180.23256
## 76 3783.13953 2180.23256
## 77 3783.13953 2180.23256
## 78 3783.13953 2180.23256
## 79 3783.13953 2180.23256
## 80 3783.13953 2180.23256
## 81 3783.13953 2180.23256
## 82 3783.13953 2180.23256
## 83 3783.13953 2180.23256
## 84 3783.13953 2180.23256
## 85 3783.13953 2180.23256
## 86 3783.13953 2180.23256
## 87 3783.13953 2180.23256
## 88 3783.13953 2180.23256
## 89 3783.13953 2180.23256
## 90 3783.13953 2180.23256
## 91 3783.13953 2180.23256
## 92 3783.13953 2180.23256
## 93 3783.13953 2180.23256
## 94 3783.13953 2180.23256
## 95 3783.13953 2180.23256
## 96 3783.13953 2180.23256
## 97 1709.30233 549.41860
## 98 1709.30233 549.41860
## 99 1709.30233 549.41860
## 100 1709.30233 549.41860
## 101 1709.30233 549.41860
## 102 1709.30233 549.41860
## 103 1709.30233 549.41860
## 104 1709.30233 549.41860
## 105 1709.30233 549.41860
## 106 1709.30233 549.41860
## 107 1709.30233 549.41860
## 108 1709.30233 549.41860
## 109 1709.30233 549.41860
## 110 1709.30233 549.41860
## 111 1709.30233 549.41860
## 112 1709.30233 549.41860
## 113 1709.30233 549.41860
## 114 1709.30233 549.41860
## 115 1709.30233 549.41860
## 116 1709.30233 549.41860
## 117 1709.30233 549.41860
## 118 1709.30233 549.41860
## 119 1709.30233 549.41860
## 120 1709.30233 549.41860
## 121 540.69767 0.00000
## 122 540.69767 0.00000
## 123 540.69767 0.00000
## 124 540.69767 0.00000
## 125 540.69767 0.00000
## 126 540.69767 0.00000
## 127 540.69767 0.00000
## 128 540.69767 0.00000
## 129 540.69767 0.00000
## 130 540.69767 0.00000
## 131 540.69767 0.00000
## 132 540.69767 0.00000
## 133 540.69767 0.00000
## 134 540.69767 0.00000
## 135 540.69767 0.00000
## 136 540.69767 0.00000
## 137 540.69767 0.00000
## 138 540.69767 0.00000
## 139 540.69767 0.00000
## 140 540.69767 0.00000
## 141 540.69767 0.00000
## 142 540.69767 0.00000
## 143 540.69767 0.00000
## 144 540.69767 0.00000
## 145 1181.68605 31.39535
## 146 1181.68605 31.39535
## 147 1181.68605 31.39535
## 148 1181.68605 31.39535
## 149 1181.68605 31.39535
## 150 1181.68605 31.39535
## 151 1181.68605 31.39535
## 152 1181.68605 31.39535
## 153 1181.68605 31.39535
## 154 1181.68605 31.39535
## 155 1181.68605 31.39535
## 156 1181.68605 31.39535
## 157 1181.68605 31.39535
## 158 1181.68605 31.39535
## 159 1181.68605 31.39535
## 160 1181.68605 31.39535
## 161 1181.68605 31.39535
## 162 1181.68605 31.39535
## 163 1181.68605 31.39535
## 164 1181.68605 31.39535
## 165 1181.68605 31.39535
## 166 1181.68605 31.39535
## 167 1181.68605 31.39535
## 168 1181.68605 31.39535
## 169 1063.95349 126.45349
## 170 1063.95349 126.45349
## 171 1063.95349 126.45349
## 172 1063.95349 126.45349
## 173 1063.95349 126.45349
## 174 1063.95349 126.45349
## 175 1063.95349 126.45349
## 176 1063.95349 126.45349
## 177 1063.95349 126.45349
## 178 1063.95349 126.45349
## 179 1063.95349 126.45349
## 180 1063.95349 126.45349
## 181 1063.95349 126.45349
## 182 1063.95349 126.45349
## 183 1063.95349 126.45349
## 184 1063.95349 126.45349
## 185 1063.95349 126.45349
## 186 1063.95349 126.45349
## 187 1063.95349 126.45349
## 188 1063.95349 126.45349
## 189 1063.95349 126.45349
## 190 1063.95349 126.45349
## 191 1063.95349 126.45349
## 192 1063.95349 126.45349
## 193 883.43023 635.75581
## 194 883.43023 635.75581
## 195 883.43023 635.75581
## 196 883.43023 635.75581
## 197 883.43023 635.75581
## 198 883.43023 635.75581
## 199 883.43023 635.75581
## 200 883.43023 635.75581
## 201 883.43023 635.75581
## 202 883.43023 635.75581
## 203 883.43023 635.75581
## 204 883.43023 635.75581
## 205 883.43023 635.75581
## 206 883.43023 635.75581
## 207 883.43023 635.75581
## 208 883.43023 635.75581
## 209 883.43023 635.75581
## 210 883.43023 635.75581
## 211 883.43023 635.75581
## 212 883.43023 635.75581
## 213 883.43023 635.75581
## 214 883.43023 635.75581
## 215 883.43023 635.75581
## 216 883.43023 635.75581
## 217 5708.72093 1029.06977
## 218 5708.72093 1029.06977
## 219 5708.72093 1029.06977
## 220 5708.72093 1029.06977
## 221 5708.72093 1029.06977
## 222 5708.72093 1029.06977
## 223 5708.72093 1029.06977
## 224 5708.72093 1029.06977
## 225 5708.72093 1029.06977
## 226 5708.72093 1029.06977
## 227 5708.72093 1029.06977
## 228 5708.72093 1029.06977
## 229 5708.72093 1029.06977
## 230 5708.72093 1029.06977
## 231 5708.72093 1029.06977
## 232 5708.72093 1029.06977
## 233 5708.72093 1029.06977
## 234 5708.72093 1029.06977
## 235 5708.72093 1029.06977
## 236 5708.72093 1029.06977
## 237 5708.72093 1029.06977
## 238 5708.72093 1029.06977
## 239 5708.72093 1029.06977
## 240 5708.72093 1029.06977
## 241 99.41860 0.00000
## 242 99.41860 0.00000
## 243 99.41860 0.00000
## 244 99.41860 0.00000
## 245 99.41860 0.00000
## 246 99.41860 0.00000
## 247 99.41860 0.00000
## 248 99.41860 0.00000
## 249 99.41860 0.00000
## 250 99.41860 0.00000
## 251 99.41860 0.00000
## 252 99.41860 0.00000
## 253 99.41860 0.00000
## 254 99.41860 0.00000
## 255 99.41860 0.00000
## 256 99.41860 0.00000
## 257 99.41860 0.00000
## 258 99.41860 0.00000
## 259 99.41860 0.00000
## 260 99.41860 0.00000
## 261 99.41860 0.00000
## 262 99.41860 0.00000
## 263 99.41860 0.00000
## 264 99.41860 0.00000
## 265 146.51163 2188.95349
## 266 146.51163 2188.95349
## 267 146.51163 2188.95349
## 268 146.51163 2188.95349
## 269 146.51163 2188.95349
## 270 146.51163 2188.95349
## 271 146.51163 2188.95349
## 272 146.51163 2188.95349
## 273 146.51163 2188.95349
## 274 146.51163 2188.95349
## 275 146.51163 2188.95349
## 276 146.51163 2188.95349
## 277 146.51163 2188.95349
## 278 146.51163 2188.95349
## 279 146.51163 2188.95349
## 280 146.51163 2188.95349
## 281 146.51163 2188.95349
## 282 146.51163 2188.95349
## 283 146.51163 2188.95349
## 284 146.51163 2188.95349
## 285 146.51163 2188.95349
## 286 146.51163 2188.95349
## 287 146.51163 2188.95349
## 288 146.51163 2188.95349
## 289 0.00000 3654.06977
## 290 0.00000 3654.06977
## 291 0.00000 3654.06977
## 292 0.00000 3654.06977
## 293 0.00000 3654.06977
## 294 0.00000 3654.06977
## 295 0.00000 3654.06977
## 296 0.00000 3654.06977
## 297 0.00000 3654.06977
## 298 0.00000 3654.06977
## 299 0.00000 3654.06977
## 300 0.00000 3654.06977
## 301 0.00000 3654.06977
## 302 0.00000 3654.06977
## 303 0.00000 3654.06977
## 304 0.00000 3654.06977
## 305 0.00000 3654.06977
## 306 0.00000 3654.06977
## 307 0.00000 3654.06977
## 308 0.00000 3654.06977
## 309 0.00000 3654.06977
## 310 0.00000 3654.06977
## 311 0.00000 3654.06977
## 312 0.00000 3654.06977
## 313 976.74419 287.79070
## 314 976.74419 287.79070
## 315 976.74419 287.79070
## 316 976.74419 287.79070
## 317 976.74419 287.79070
## 318 976.74419 287.79070
## 319 976.74419 287.79070
## 320 976.74419 287.79070
## 321 976.74419 287.79070
## 322 976.74419 287.79070
## 323 976.74419 287.79070
## 324 976.74419 287.79070
## 325 976.74419 287.79070
## 326 976.74419 287.79070
## 327 976.74419 287.79070
## 328 976.74419 287.79070
## 329 976.74419 287.79070
## 330 976.74419 287.79070
## 331 976.74419 287.79070
## 332 976.74419 287.79070
## 333 976.74419 287.79070
## 334 976.74419 287.79070
## 335 976.74419 287.79070
## 336 976.74419 287.79070
## 337 1360.46512 31.39535
## 338 1360.46512 31.39535
## 339 1360.46512 31.39535
## 340 1360.46512 31.39535
## 341 1360.46512 31.39535
## 342 1360.46512 31.39535
## 343 1360.46512 31.39535
## 344 1360.46512 31.39535
## 345 1360.46512 31.39535
## 346 1360.46512 31.39535
## 347 1360.46512 31.39535
## 348 1360.46512 31.39535
## 349 1360.46512 31.39535
## 350 1360.46512 31.39535
## 351 1360.46512 31.39535
## 352 1360.46512 31.39535
## 353 1360.46512 31.39535
## 354 1360.46512 31.39535
## 355 1360.46512 31.39535
## 356 1360.46512 31.39535
## 357 1360.46512 31.39535
## 358 1360.46512 31.39535
## 359 1360.46512 31.39535
## 360 1360.46512 31.39535
## 361 1068.31395 0.00000
## 362 1068.31395 0.00000
## 363 1068.31395 0.00000
## 364 1068.31395 0.00000
## 365 1068.31395 0.00000
## 366 1068.31395 0.00000
## 367 1068.31395 0.00000
## 368 1068.31395 0.00000
## 369 1068.31395 0.00000
## 370 1068.31395 0.00000
## 371 1068.31395 0.00000
## 372 1068.31395 0.00000
## 373 1068.31395 0.00000
## 374 1068.31395 0.00000
## 375 1068.31395 0.00000
## 376 1068.31395 0.00000
## 377 1068.31395 0.00000
## 378 1068.31395 0.00000
## 379 1068.31395 0.00000
## 380 1068.31395 0.00000
## 381 1068.31395 0.00000
## 382 1068.31395 0.00000
## 383 1068.31395 0.00000
## 384 1068.31395 0.00000
## 385 883.43023 635.75581
## 386 883.43023 635.75581
## 387 883.43023 635.75581
## 388 883.43023 635.75581
## 389 883.43023 635.75581
## 390 883.43023 635.75581
## 391 883.43023 635.75581
## 392 883.43023 635.75581
## 393 883.43023 635.75581
## 394 883.43023 635.75581
## 395 883.43023 635.75581
## 396 883.43023 635.75581
## 397 883.43023 635.75581
## 398 883.43023 635.75581
## 399 883.43023 635.75581
## 400 883.43023 635.75581
## 401 883.43023 635.75581
## 402 883.43023 635.75581
## 403 883.43023 635.75581
## 404 883.43023 635.75581
## 405 883.43023 635.75581
## 406 883.43023 635.75581
## 407 883.43023 635.75581
## 408 883.43023 635.75581
## 409 144.76744 2162.79070
## 410 144.76744 2162.79070
## 411 144.76744 2162.79070
## 412 144.76744 2162.79070
## 413 144.76744 2162.79070
## 414 144.76744 2162.79070
## 415 144.76744 2162.79070
## 416 144.76744 2162.79070
## 417 144.76744 2162.79070
## 418 144.76744 2162.79070
## 419 144.76744 2162.79070
## 420 144.76744 2162.79070
## 421 144.76744 2162.79070
## 422 144.76744 2162.79070
## 423 144.76744 2162.79070
## 424 144.76744 2162.79070
## 425 144.76744 2162.79070
## 426 144.76744 2162.79070
## 427 144.76744 2162.79070
## 428 144.76744 2162.79070
## 429 144.76744 2162.79070
## 430 144.76744 2162.79070
## 431 144.76744 2162.79070
## 432 144.76744 2162.79070
## 433 1128.48837 1090.11628
## 434 1128.48837 1090.11628
## 435 1128.48837 1090.11628
## 436 1128.48837 1090.11628
## 437 1128.48837 1090.11628
## 438 1128.48837 1090.11628
## 439 1128.48837 1090.11628
## 440 1128.48837 1090.11628
## 441 1128.48837 1090.11628
## 442 1128.48837 1090.11628
## 443 1128.48837 1090.11628
## 444 1128.48837 1090.11628
## 445 1128.48837 1090.11628
## 446 1128.48837 1090.11628
## 447 1128.48837 1090.11628
## 448 1128.48837 1090.11628
## 449 1128.48837 1090.11628
## 450 1128.48837 1090.11628
## 451 1128.48837 1090.11628
## 452 1128.48837 1090.11628
## 453 1128.48837 1090.11628
## 454 1128.48837 1090.11628
## 455 1128.48837 1090.11628
## 456 1128.48837 1090.11628
## 457 2727.90698 0.00000
## 458 2727.90698 0.00000
## 459 2727.90698 0.00000
## 460 2727.90698 0.00000
## 461 2727.90698 0.00000
## 462 2727.90698 0.00000
## 463 2727.90698 0.00000
## 464 2727.90698 0.00000
## 465 2727.90698 0.00000
## 466 2727.90698 0.00000
## 467 2727.90698 0.00000
## 468 2727.90698 0.00000
## 469 2727.90698 0.00000
## 470 2727.90698 0.00000
## 471 2727.90698 0.00000
## 472 2727.90698 0.00000
## 473 2727.90698 0.00000
## 474 2727.90698 0.00000
## 475 2727.90698 0.00000
## 476 2727.90698 0.00000
## 477 2727.90698 0.00000
## 478 2727.90698 0.00000
## 479 2727.90698 0.00000
## 480 2727.90698 0.00000
## 481 1648.25581 2215.11628
## 482 1648.25581 2215.11628
## 483 1648.25581 2215.11628
## 484 1648.25581 2215.11628
## 485 1648.25581 2215.11628
## 486 1648.25581 2215.11628
## 487 1648.25581 2215.11628
## 488 1648.25581 2215.11628
## 489 1648.25581 2215.11628
## 490 1648.25581 2215.11628
## 491 1648.25581 2215.11628
## 492 1648.25581 2215.11628
## 493 1648.25581 2215.11628
## 494 1648.25581 2215.11628
## 495 1648.25581 2215.11628
## 496 1648.25581 2215.11628
## 497 1648.25581 2215.11628
## 498 1648.25581 2215.11628
## 499 1648.25581 2215.11628
## 500 1648.25581 2215.11628
## 501 1648.25581 2215.11628
## 502 1648.25581 2215.11628
## 503 1648.25581 2215.11628
## 504 1648.25581 2215.11628
## 505 366.27907 0.00000
## 506 366.27907 0.00000
## 507 366.27907 0.00000
## 508 366.27907 0.00000
## 509 366.27907 0.00000
## 510 366.27907 0.00000
## 511 366.27907 0.00000
## 512 366.27907 0.00000
## 513 366.27907 0.00000
## 514 366.27907 0.00000
## 515 366.27907 0.00000
## 516 366.27907 0.00000
## 517 366.27907 0.00000
## 518 366.27907 0.00000
## 519 366.27907 0.00000
## 520 366.27907 0.00000
## 521 366.27907 0.00000
## 522 366.27907 0.00000
## 523 366.27907 0.00000
## 524 366.27907 0.00000
## 525 366.27907 0.00000
## 526 366.27907 0.00000
## 527 366.27907 0.00000
## 528 366.27907 0.00000
## 529 514.53488 31.39535
## 530 514.53488 31.39535
## 531 514.53488 31.39535
## 532 514.53488 31.39535
## 533 514.53488 31.39535
## 534 514.53488 31.39535
## 535 514.53488 31.39535
## 536 514.53488 31.39535
## 537 514.53488 31.39535
## 538 514.53488 31.39535
## 539 514.53488 31.39535
## 540 514.53488 31.39535
## 541 514.53488 31.39535
## 542 514.53488 31.39535
## 543 514.53488 31.39535
## 544 514.53488 31.39535
## 545 514.53488 31.39535
## 546 514.53488 31.39535
## 547 514.53488 31.39535
## 548 514.53488 31.39535
## 549 514.53488 31.39535
## 550 514.53488 31.39535
## 551 514.53488 31.39535
## 552 514.53488 31.39535
## 553 0.00000 0.00000
## 554 0.00000 0.00000
## 555 0.00000 0.00000
## 556 0.00000 0.00000
## 557 0.00000 0.00000
## 558 0.00000 0.00000
## 559 0.00000 0.00000
## 560 0.00000 0.00000
## 561 0.00000 0.00000
## 562 0.00000 0.00000
## 563 0.00000 0.00000
## 564 0.00000 0.00000
## 565 0.00000 0.00000
## 566 0.00000 0.00000
## 567 0.00000 0.00000
## 568 0.00000 0.00000
## 569 0.00000 0.00000
## 570 0.00000 0.00000
## 571 0.00000 0.00000
## 572 0.00000 0.00000
## 573 0.00000 0.00000
## 574 0.00000 0.00000
## 575 0.00000 0.00000
## 576 0.00000 0.00000
## 577 883.43023 635.75581
## 578 883.43023 635.75581
## 579 883.43023 635.75581
## 580 883.43023 635.75581
## 581 883.43023 635.75581
## 582 883.43023 635.75581
## 583 883.43023 635.75581
## 584 883.43023 635.75581
## 585 883.43023 635.75581
## 586 883.43023 635.75581
## 587 883.43023 635.75581
## 588 883.43023 635.75581
## 589 883.43023 635.75581
## 590 883.43023 635.75581
## 591 883.43023 635.75581
## 592 883.43023 635.75581
## 593 883.43023 635.75581
## 594 883.43023 635.75581
## 595 883.43023 635.75581
## 596 883.43023 635.75581
## 597 883.43023 635.75581
## 598 883.43023 635.75581
## 599 883.43023 635.75581
## 600 883.43023 635.75581
## 601 702.90698 0.00000
## 602 702.90698 0.00000
## 603 702.90698 0.00000
## 604 702.90698 0.00000
## 605 702.90698 0.00000
## 606 702.90698 0.00000
## 607 702.90698 0.00000
## 608 702.90698 0.00000
## 609 702.90698 0.00000
## 610 702.90698 0.00000
## 611 702.90698 0.00000
## 612 702.90698 0.00000
## 613 702.90698 0.00000
## 614 702.90698 0.00000
## 615 702.90698 0.00000
## 616 702.90698 0.00000
## 617 702.90698 0.00000
## 618 702.90698 0.00000
## 619 702.90698 0.00000
## 620 702.90698 0.00000
## 621 702.90698 0.00000
## 622 702.90698 0.00000
## 623 702.90698 0.00000
## 624 702.90698 0.00000
## 625 1206.97674 235.46512
## 626 1206.97674 235.46512
## 627 1206.97674 235.46512
## 628 1206.97674 235.46512
## 629 1206.97674 235.46512
## 630 1206.97674 235.46512
## 631 1206.97674 235.46512
## 632 1206.97674 235.46512
## 633 1206.97674 235.46512
## 634 1206.97674 235.46512
## 635 1206.97674 235.46512
## 636 1206.97674 235.46512
## 637 1206.97674 235.46512
## 638 1206.97674 235.46512
## 639 1206.97674 235.46512
## 640 1206.97674 235.46512
## 641 1206.97674 235.46512
## 642 1206.97674 235.46512
## 643 1206.97674 235.46512
## 644 1206.97674 235.46512
## 645 1206.97674 235.46512
## 646 1206.97674 235.46512
## 647 1206.97674 235.46512
## 648 1206.97674 235.46512
## 649 1376.16279 0.00000
## 650 1376.16279 0.00000
## 651 1376.16279 0.00000
## 652 1376.16279 0.00000
## 653 1376.16279 0.00000
## 654 1376.16279 0.00000
## 655 1376.16279 0.00000
## 656 1376.16279 0.00000
## 657 1376.16279 0.00000
## 658 1376.16279 0.00000
## 659 1376.16279 0.00000
## 660 1376.16279 0.00000
## 661 1376.16279 0.00000
## 662 1376.16279 0.00000
## 663 1376.16279 0.00000
## 664 1376.16279 0.00000
## 665 1376.16279 0.00000
## 666 1376.16279 0.00000
## 667 1376.16279 0.00000
## 668 1376.16279 0.00000
## 669 1376.16279 0.00000
## 670 1376.16279 0.00000
## 671 1376.16279 0.00000
## 672 1376.16279 0.00000
## 673 1055.23256 1081.39535
## 674 1055.23256 1081.39535
## 675 1055.23256 1081.39535
## 676 1055.23256 1081.39535
## 677 1055.23256 1081.39535
## 678 1055.23256 1081.39535
## 679 1055.23256 1081.39535
## 680 1055.23256 1081.39535
## 681 1055.23256 1081.39535
## 682 1055.23256 1081.39535
## 683 1055.23256 1081.39535
## 684 1055.23256 1081.39535
## 685 1055.23256 1081.39535
## 686 1055.23256 1081.39535
## 687 1055.23256 1081.39535
## 688 1055.23256 1081.39535
## 689 1055.23256 1081.39535
## 690 1055.23256 1081.39535
## 691 1055.23256 1081.39535
## 692 1055.23256 1081.39535
## 693 1055.23256 1081.39535
## 694 1055.23256 1081.39535
## 695 1055.23256 1081.39535
## 696 1055.23256 1081.39535
## 697 1561.04651 0.00000
## 698 1561.04651 0.00000
## 699 1561.04651 0.00000
## 700 1561.04651 0.00000
## 701 1561.04651 0.00000
## 702 1561.04651 0.00000
## 703 1561.04651 0.00000
## 704 1561.04651 0.00000
## 705 1561.04651 0.00000
## 706 1561.04651 0.00000
## 707 1561.04651 0.00000
## 708 1561.04651 0.00000
## 709 1561.04651 0.00000
## 710 1561.04651 0.00000
## 711 1561.04651 0.00000
## 712 1561.04651 0.00000
## 713 1561.04651 0.00000
## 714 1561.04651 0.00000
## 715 1561.04651 0.00000
## 716 1561.04651 0.00000
## 717 1561.04651 0.00000
## 718 1561.04651 0.00000
## 719 1561.04651 0.00000
## 720 1561.04651 0.00000
## 721 1609.01163 31.39535
## 722 1609.01163 31.39535
## 723 1609.01163 31.39535
## 724 1609.01163 31.39535
## 725 1609.01163 31.39535
## 726 1609.01163 31.39535
## 727 1609.01163 31.39535
## 728 1609.01163 31.39535
## 729 1609.01163 31.39535
## 730 1609.01163 31.39535
## 731 1609.01163 31.39535
## 732 1609.01163 31.39535
## 733 1609.01163 31.39535
## 734 1609.01163 31.39535
## 735 1609.01163 31.39535
## 736 1609.01163 31.39535
## 737 1609.01163 31.39535
## 738 1609.01163 31.39535
## 739 1609.01163 31.39535
## 740 1609.01163 31.39535
## 741 1609.01163 31.39535
## 742 1609.01163 31.39535
## 743 1609.01163 31.39535
## 744 1609.01163 31.39535
## 745 0.00000 0.00000
## 746 0.00000 0.00000
## 747 0.00000 0.00000
## 748 0.00000 0.00000
## 749 0.00000 0.00000
## 750 0.00000 0.00000
## 751 0.00000 0.00000
## 752 0.00000 0.00000
## 753 0.00000 0.00000
## 754 0.00000 0.00000
## 755 0.00000 0.00000
## 756 0.00000 0.00000
## 757 0.00000 0.00000
## 758 0.00000 0.00000
## 759 0.00000 0.00000
## 760 0.00000 0.00000
## 761 0.00000 0.00000
## 762 0.00000 0.00000
## 763 0.00000 0.00000
## 764 0.00000 0.00000
## 765 0.00000 0.00000
## 766 0.00000 0.00000
## 767 0.00000 0.00000
## 768 0.00000 0.00000
## 769 883.43023 635.75581
## 770 883.43023 635.75581
## 771 883.43023 635.75581
## 772 883.43023 635.75581
## 773 883.43023 635.75581
## 774 883.43023 635.75581
## 775 883.43023 635.75581
## 776 883.43023 635.75581
## 777 883.43023 635.75581
## 778 883.43023 635.75581
## 779 883.43023 635.75581
## 780 883.43023 635.75581
## 781 883.43023 635.75581
## 782 883.43023 635.75581
## 783 883.43023 635.75581
## 784 883.43023 635.75581
## 785 883.43023 635.75581
## 786 883.43023 635.75581
## 787 883.43023 635.75581
## 788 883.43023 635.75581
## 789 883.43023 635.75581
## 790 883.43023 635.75581
## 791 883.43023 635.75581
## 792 883.43023 635.75581
## 793 2944.18605 0.00000
## 794 2944.18605 0.00000
## 795 2944.18605 0.00000
## 796 2944.18605 0.00000
## 797 2944.18605 0.00000
## 798 2944.18605 0.00000
## 799 2944.18605 0.00000
## 800 2944.18605 0.00000
## 801 2944.18605 0.00000
## 802 2944.18605 0.00000
## 803 2944.18605 0.00000
## 804 2944.18605 0.00000
## 805 2944.18605 0.00000
## 806 2944.18605 0.00000
## 807 2944.18605 0.00000
## 808 2944.18605 0.00000
## 809 2944.18605 0.00000
## 810 2944.18605 0.00000
## 811 2944.18605 0.00000
## 812 2944.18605 0.00000
## 813 2944.18605 0.00000
## 814 2944.18605 0.00000
## 815 2944.18605 0.00000
## 816 2944.18605 0.00000
## 817 99.41860 1055.23256
## 818 99.41860 1055.23256
## 819 99.41860 1055.23256
## 820 99.41860 1055.23256
## 821 99.41860 1055.23256
## 822 99.41860 1055.23256
## 823 99.41860 1055.23256
## 824 99.41860 1055.23256
## 825 99.41860 1055.23256
## 826 99.41860 1055.23256
## 827 99.41860 1055.23256
## 828 99.41860 1055.23256
## 829 99.41860 1055.23256
## 830 99.41860 1055.23256
## 831 99.41860 1055.23256
## 832 99.41860 1055.23256
## 833 99.41860 1055.23256
## 834 99.41860 1055.23256
## 835 99.41860 1055.23256
## 836 99.41860 1055.23256
## 837 99.41860 1055.23256
## 838 99.41860 1055.23256
## 839 99.41860 1055.23256
## 840 99.41860 1055.23256
## 841 3059.30233 3427.32558
## 842 3059.30233 3427.32558
## 843 3059.30233 3427.32558
## 844 3059.30233 3427.32558
## 845 3059.30233 3427.32558
## 846 3059.30233 3427.32558
## 847 3059.30233 3427.32558
## 848 3059.30233 3427.32558
## 849 3059.30233 3427.32558
## 850 3059.30233 3427.32558
## 851 3059.30233 3427.32558
## 852 3059.30233 3427.32558
## 853 3059.30233 3427.32558
## 854 3059.30233 3427.32558
## 855 3059.30233 3427.32558
## 856 3059.30233 3427.32558
## 857 3059.30233 3427.32558
## 858 3059.30233 3427.32558
## 859 3059.30233 3427.32558
## 860 3059.30233 3427.32558
## 861 3059.30233 3427.32558
## 862 3059.30233 3427.32558
## 863 3059.30233 3427.32558
## 864 3059.30233 3427.32558
## 865 409.88372 3706.39535
## 866 409.88372 3706.39535
## 867 409.88372 3706.39535
## 868 409.88372 3706.39535
## 869 409.88372 3706.39535
## 870 409.88372 3706.39535
## 871 409.88372 3706.39535
## 872 409.88372 3706.39535
## 873 409.88372 3706.39535
## 874 409.88372 3706.39535
## 875 409.88372 3706.39535
## 876 409.88372 3706.39535
## 877 409.88372 3706.39535
## 878 409.88372 3706.39535
## 879 409.88372 3706.39535
## 880 409.88372 3706.39535
## 881 409.88372 3706.39535
## 882 409.88372 3706.39535
## 883 409.88372 3706.39535
## 884 409.88372 3706.39535
## 885 409.88372 3706.39535
## 886 409.88372 3706.39535
## 887 409.88372 3706.39535
## 888 409.88372 3706.39535
## 889 2406.97674 1090.11628
## 890 2406.97674 1090.11628
## 891 2406.97674 1090.11628
## 892 2406.97674 1090.11628
## 893 2406.97674 1090.11628
## 894 2406.97674 1090.11628
## 895 2406.97674 1090.11628
## 896 2406.97674 1090.11628
## 897 2406.97674 1090.11628
## 898 2406.97674 1090.11628
## 899 2406.97674 1090.11628
## 900 2406.97674 1090.11628
## 901 2406.97674 1090.11628
## 902 2406.97674 1090.11628
## 903 2406.97674 1090.11628
## 904 2406.97674 1090.11628
## 905 2406.97674 1090.11628
## 906 2406.97674 1090.11628
## 907 2406.97674 1090.11628
## 908 2406.97674 1090.11628
## 909 2406.97674 1090.11628
## 910 2406.97674 1090.11628
## 911 2406.97674 1090.11628
## 912 2406.97674 1090.11628
## 913 2132.26744 1121.51163
## 914 2132.26744 1121.51163
## 915 2132.26744 1121.51163
## 916 2132.26744 1121.51163
## 917 2132.26744 1121.51163
## 918 2132.26744 1121.51163
## 919 2132.26744 1121.51163
## 920 2132.26744 1121.51163
## 921 2132.26744 1121.51163
## 922 2132.26744 1121.51163
## 923 2132.26744 1121.51163
## 924 2132.26744 1121.51163
## 925 2132.26744 1121.51163
## 926 2132.26744 1121.51163
## 927 2132.26744 1121.51163
## 928 2132.26744 1121.51163
## 929 2132.26744 1121.51163
## 930 2132.26744 1121.51163
## 931 2132.26744 1121.51163
## 932 2132.26744 1121.51163
## 933 2132.26744 1121.51163
## 934 2132.26744 1121.51163
## 935 2132.26744 1121.51163
## 936 2132.26744 1121.51163
## 937 1848.83721 0.00000
## 938 1848.83721 0.00000
## 939 1848.83721 0.00000
## 940 1848.83721 0.00000
## 941 1848.83721 0.00000
## 942 1848.83721 0.00000
## 943 1848.83721 0.00000
## 944 1848.83721 0.00000
## 945 1848.83721 0.00000
## 946 1848.83721 0.00000
## 947 1848.83721 0.00000
## 948 1848.83721 0.00000
## 949 1848.83721 0.00000
## 950 1848.83721 0.00000
## 951 1848.83721 0.00000
## 952 1848.83721 0.00000
## 953 1848.83721 0.00000
## 954 1848.83721 0.00000
## 955 1848.83721 0.00000
## 956 1848.83721 0.00000
## 957 1848.83721 0.00000
## 958 1848.83721 0.00000
## 959 1848.83721 0.00000
## 960 1848.83721 0.00000
## 961 883.43023 635.75581
## 962 883.43023 635.75581
## 963 883.43023 635.75581
## 964 883.43023 635.75581
## 965 883.43023 635.75581
## 966 883.43023 635.75581
## 967 883.43023 635.75581
## 968 883.43023 635.75581
## 969 883.43023 635.75581
## 970 883.43023 635.75581
## 971 883.43023 635.75581
## 972 883.43023 635.75581
## 973 883.43023 635.75581
## 974 883.43023 635.75581
## 975 883.43023 635.75581
## 976 883.43023 635.75581
## 977 883.43023 635.75581
## 978 883.43023 635.75581
## 979 883.43023 635.75581
## 980 883.43023 635.75581
## 981 883.43023 635.75581
## 982 883.43023 635.75581
## 983 883.43023 635.75581
## 984 883.43023 635.75581
## 985 2131.39535 1055.23256
## 986 2131.39535 1055.23256
## 987 2131.39535 1055.23256
## 988 2131.39535 1055.23256
## 989 2131.39535 1055.23256
## 990 2131.39535 1055.23256
## 991 2131.39535 1055.23256
## 992 2131.39535 1055.23256
## 993 2131.39535 1055.23256
## 994 2131.39535 1055.23256
## 995 2131.39535 1055.23256
## 996 2131.39535 1055.23256
## 997 2131.39535 1055.23256
## 998 2131.39535 1055.23256
## 999 2131.39535 1055.23256
## 1000 2131.39535 1055.23256
## 1001 2131.39535 1055.23256
## 1002 2131.39535 1055.23256
## 1003 2131.39535 1055.23256
## 1004 2131.39535 1055.23256
## 1005 2131.39535 1055.23256
## 1006 2131.39535 1055.23256
## 1007 2131.39535 1055.23256
## 1008 2131.39535 1055.23256
## 1009 1412.79070 1090.11628
## 1010 1412.79070 1090.11628
## 1011 1412.79070 1090.11628
## 1012 1412.79070 1090.11628
## 1013 1412.79070 1090.11628
## 1014 1412.79070 1090.11628
## 1015 1412.79070 1090.11628
## 1016 1412.79070 1090.11628
## 1017 1412.79070 1090.11628
## 1018 1412.79070 1090.11628
## 1019 1412.79070 1090.11628
## 1020 1412.79070 1090.11628
## 1021 1412.79070 1090.11628
## 1022 1412.79070 1090.11628
## 1023 1412.79070 1090.11628
## 1024 1412.79070 1090.11628
## 1025 1412.79070 1090.11628
## 1026 1412.79070 1090.11628
## 1027 1412.79070 1090.11628
## 1028 1412.79070 1090.11628
## 1029 1412.79070 1090.11628
## 1030 1412.79070 1090.11628
## 1031 1412.79070 1090.11628
## 1032 1412.79070 1090.11628
## 1033 3729.06977 2180.23256
## 1034 3729.06977 2180.23256
## 1035 3729.06977 2180.23256
## 1036 3729.06977 2180.23256
## 1037 3729.06977 2180.23256
## 1038 3729.06977 2180.23256
## 1039 3729.06977 2180.23256
## 1040 3729.06977 2180.23256
## 1041 3729.06977 2180.23256
## 1042 3729.06977 2180.23256
## 1043 3729.06977 2180.23256
## 1044 3729.06977 2180.23256
## 1045 3729.06977 2180.23256
## 1046 3729.06977 2180.23256
## 1047 3729.06977 2180.23256
## 1048 3729.06977 2180.23256
## 1049 3729.06977 2180.23256
## 1050 3729.06977 2180.23256
## 1051 3729.06977 2180.23256
## 1052 3729.06977 2180.23256
## 1053 3729.06977 2180.23256
## 1054 3729.06977 2180.23256
## 1055 3729.06977 2180.23256
## 1056 3729.06977 2180.23256
## 1057 1709.30233 549.41860
## 1058 1709.30233 549.41860
## 1059 1709.30233 549.41860
## 1060 1709.30233 549.41860
## 1061 1709.30233 549.41860
## 1062 1709.30233 549.41860
## 1063 1709.30233 549.41860
## 1064 1709.30233 549.41860
## 1065 1709.30233 549.41860
## 1066 1709.30233 549.41860
## 1067 1709.30233 549.41860
## 1068 1709.30233 549.41860
## 1069 1709.30233 549.41860
## 1070 1709.30233 549.41860
## 1071 1709.30233 549.41860
## 1072 1709.30233 549.41860
## 1073 1709.30233 549.41860
## 1074 1709.30233 549.41860
## 1075 1709.30233 549.41860
## 1076 1709.30233 549.41860
## 1077 1709.30233 549.41860
## 1078 1709.30233 549.41860
## 1079 1709.30233 549.41860
## 1080 1709.30233 549.41860
## 1081 540.69767 0.00000
## 1082 540.69767 0.00000
## 1083 540.69767 0.00000
## 1084 540.69767 0.00000
## 1085 540.69767 0.00000
## 1086 540.69767 0.00000
## 1087 540.69767 0.00000
## 1088 540.69767 0.00000
## 1089 540.69767 0.00000
## 1090 540.69767 0.00000
## 1091 540.69767 0.00000
## 1092 540.69767 0.00000
## 1093 540.69767 0.00000
## 1094 540.69767 0.00000
## 1095 540.69767 0.00000
## 1096 540.69767 0.00000
## 1097 540.69767 0.00000
## 1098 540.69767 0.00000
## 1099 540.69767 0.00000
## 1100 540.69767 0.00000
## 1101 540.69767 0.00000
## 1102 540.69767 0.00000
## 1103 540.69767 0.00000
## 1104 540.69767 0.00000
## 1105 1181.68605 0.00000
## 1106 1181.68605 0.00000
## 1107 1181.68605 0.00000
## 1108 1181.68605 0.00000
## 1109 1181.68605 0.00000
## 1110 1181.68605 0.00000
## 1111 1181.68605 0.00000
## 1112 1181.68605 0.00000
## 1113 1181.68605 0.00000
## 1114 1181.68605 0.00000
## 1115 1181.68605 0.00000
## 1116 1181.68605 0.00000
## 1117 1181.68605 0.00000
## 1118 1181.68605 0.00000
## 1119 1181.68605 0.00000
## 1120 1181.68605 0.00000
## 1121 1181.68605 0.00000
## 1122 1181.68605 0.00000
## 1123 1181.68605 0.00000
## 1124 1181.68605 0.00000
## 1125 1181.68605 0.00000
## 1126 1181.68605 0.00000
## 1127 1181.68605 0.00000
## 1128 1181.68605 0.00000
## 1129 1063.95349 126.45349
## 1130 1063.95349 126.45349
## 1131 1063.95349 126.45349
## 1132 1063.95349 126.45349
## 1133 1063.95349 126.45349
## 1134 1063.95349 126.45349
## 1135 1063.95349 126.45349
## 1136 1063.95349 126.45349
## 1137 1063.95349 126.45349
## 1138 1063.95349 126.45349
## 1139 1063.95349 126.45349
## 1140 1063.95349 126.45349
## 1141 1063.95349 126.45349
## 1142 1063.95349 126.45349
## 1143 1063.95349 126.45349
## 1144 1063.95349 126.45349
## 1145 1063.95349 126.45349
## 1146 1063.95349 126.45349
## 1147 1063.95349 126.45349
## 1148 1063.95349 126.45349
## 1149 1063.95349 126.45349
## 1150 1063.95349 126.45349
## 1151 1063.95349 126.45349
## 1152 1063.95349 126.45349
## 1153 883.43023 635.75581
## 1154 883.43023 635.75581
## 1155 883.43023 635.75581
## 1156 883.43023 635.75581
## 1157 883.43023 635.75581
## 1158 883.43023 635.75581
## 1159 883.43023 635.75581
## 1160 883.43023 635.75581
## 1161 883.43023 635.75581
## 1162 883.43023 635.75581
## 1163 883.43023 635.75581
## 1164 883.43023 635.75581
## 1165 883.43023 635.75581
## 1166 883.43023 635.75581
## 1167 883.43023 635.75581
## 1168 883.43023 635.75581
## 1169 883.43023 635.75581
## 1170 883.43023 635.75581
## 1171 883.43023 635.75581
## 1172 883.43023 635.75581
## 1173 883.43023 635.75581
## 1174 883.43023 635.75581
## 1175 883.43023 635.75581
## 1176 883.43023 635.75581
## 1177 5986.04651 1029.06977
## 1178 5986.04651 1029.06977
## 1179 5986.04651 1029.06977
## 1180 5986.04651 1029.06977
## 1181 5986.04651 1029.06977
## 1182 5986.04651 1029.06977
## 1183 5986.04651 1029.06977
## 1184 5986.04651 1029.06977
## 1185 5986.04651 1029.06977
## 1186 5986.04651 1029.06977
## 1187 5986.04651 1029.06977
## 1188 5986.04651 1029.06977
## 1189 5986.04651 1029.06977
## 1190 5986.04651 1029.06977
## 1191 5986.04651 1029.06977
## 1192 5986.04651 1029.06977
## 1193 5986.04651 1029.06977
## 1194 5986.04651 1029.06977
## 1195 5986.04651 1029.06977
## 1196 5986.04651 1029.06977
## 1197 5986.04651 1029.06977
## 1198 5986.04651 1029.06977
## 1199 5986.04651 1029.06977
## 1200 5986.04651 1029.06977
## 1201 322.67442 0.00000
## 1202 322.67442 0.00000
## 1203 322.67442 0.00000
## 1204 322.67442 0.00000
## 1205 322.67442 0.00000
## 1206 322.67442 0.00000
## 1207 322.67442 0.00000
## 1208 322.67442 0.00000
## 1209 322.67442 0.00000
## 1210 322.67442 0.00000
## 1211 322.67442 0.00000
## 1212 322.67442 0.00000
## 1213 322.67442 0.00000
## 1214 322.67442 0.00000
## 1215 322.67442 0.00000
## 1216 322.67442 0.00000
## 1217 322.67442 0.00000
## 1218 322.67442 0.00000
## 1219 322.67442 0.00000
## 1220 322.67442 0.00000
## 1221 322.67442 0.00000
## 1222 322.67442 0.00000
## 1223 322.67442 0.00000
## 1224 322.67442 0.00000
## 1225 92.44186 2188.95349
## 1226 92.44186 2188.95349
## 1227 92.44186 2188.95349
## 1228 92.44186 2188.95349
## 1229 92.44186 2188.95349
## 1230 92.44186 2188.95349
## 1231 92.44186 2188.95349
## 1232 92.44186 2188.95349
## 1233 92.44186 2188.95349
## 1234 92.44186 2188.95349
## 1235 92.44186 2188.95349
## 1236 92.44186 2188.95349
## 1237 92.44186 2188.95349
## 1238 92.44186 2188.95349
## 1239 92.44186 2188.95349
## 1240 92.44186 2188.95349
## 1241 92.44186 2188.95349
## 1242 92.44186 2188.95349
## 1243 92.44186 2188.95349
## 1244 92.44186 2188.95349
## 1245 92.44186 2188.95349
## 1246 92.44186 2188.95349
## 1247 92.44186 2188.95349
## 1248 92.44186 2188.95349
## 1249 0.00000 3654.06977
## 1250 0.00000 3654.06977
## 1251 0.00000 3654.06977
## 1252 0.00000 3654.06977
## 1253 0.00000 3654.06977
## 1254 0.00000 3654.06977
## 1255 0.00000 3654.06977
## 1256 0.00000 3654.06977
## 1257 0.00000 3654.06977
## 1258 0.00000 3654.06977
## 1259 0.00000 3654.06977
## 1260 0.00000 3654.06977
## 1261 0.00000 3654.06977
## 1262 0.00000 3654.06977
## 1263 0.00000 3654.06977
## 1264 0.00000 3654.06977
## 1265 0.00000 3654.06977
## 1266 0.00000 3654.06977
## 1267 0.00000 3654.06977
## 1268 0.00000 3654.06977
## 1269 0.00000 3654.06977
## 1270 0.00000 3654.06977
## 1271 0.00000 3654.06977
## 1272 0.00000 3654.06977
## 1273 976.74419 287.79070
## 1274 976.74419 287.79070
## 1275 976.74419 287.79070
## 1276 976.74419 287.79070
## 1277 976.74419 287.79070
## 1278 976.74419 287.79070
## 1279 976.74419 287.79070
## 1280 976.74419 287.79070
## 1281 976.74419 287.79070
## 1282 976.74419 287.79070
## 1283 976.74419 287.79070
## 1284 976.74419 287.79070
## 1285 976.74419 287.79070
## 1286 976.74419 287.79070
## 1287 976.74419 287.79070
## 1288 976.74419 287.79070
## 1289 976.74419 287.79070
## 1290 976.74419 287.79070
## 1291 976.74419 287.79070
## 1292 976.74419 287.79070
## 1293 976.74419 287.79070
## 1294 976.74419 287.79070
## 1295 976.74419 287.79070
## 1296 976.74419 287.79070
## 1297 1360.46512 0.00000
## 1298 1360.46512 0.00000
## 1299 1360.46512 0.00000
## 1300 1360.46512 0.00000
## 1301 1360.46512 0.00000
## 1302 1360.46512 0.00000
## 1303 1360.46512 0.00000
## 1304 1360.46512 0.00000
## 1305 1360.46512 0.00000
## 1306 1360.46512 0.00000
## 1307 1360.46512 0.00000
## 1308 1360.46512 0.00000
## 1309 1360.46512 0.00000
## 1310 1360.46512 0.00000
## 1311 1360.46512 0.00000
## 1312 1360.46512 0.00000
## 1313 1360.46512 0.00000
## 1314 1360.46512 0.00000
## 1315 1360.46512 0.00000
## 1316 1360.46512 0.00000
## 1317 1360.46512 0.00000
## 1318 1360.46512 0.00000
## 1319 1360.46512 0.00000
## 1320 1360.46512 0.00000
## 1321 1068.31395 0.00000
## 1322 1068.31395 0.00000
## 1323 1068.31395 0.00000
## 1324 1068.31395 0.00000
## 1325 1068.31395 0.00000
## 1326 1068.31395 0.00000
## 1327 1068.31395 0.00000
## 1328 1068.31395 0.00000
## 1329 1068.31395 0.00000
## 1330 1068.31395 0.00000
## 1331 1068.31395 0.00000
## 1332 1068.31395 0.00000
## 1333 1068.31395 0.00000
## 1334 1068.31395 0.00000
## 1335 1068.31395 0.00000
## 1336 1068.31395 0.00000
## 1337 1068.31395 0.00000
## 1338 1068.31395 0.00000
## 1339 1068.31395 0.00000
## 1340 1068.31395 0.00000
## 1341 1068.31395 0.00000
## 1342 1068.31395 0.00000
## 1343 1068.31395 0.00000
## 1344 1068.31395 0.00000
## 1345 883.43023 635.75581
## 1346 883.43023 635.75581
## 1347 883.43023 635.75581
## 1348 883.43023 635.75581
## 1349 883.43023 635.75581
## 1350 883.43023 635.75581
## 1351 883.43023 635.75581
## 1352 883.43023 635.75581
## 1353 883.43023 635.75581
## 1354 883.43023 635.75581
## 1355 883.43023 635.75581
## 1356 883.43023 635.75581
## 1357 883.43023 635.75581
## 1358 883.43023 635.75581
## 1359 883.43023 635.75581
## 1360 883.43023 635.75581
## 1361 883.43023 635.75581
## 1362 883.43023 635.75581
## 1363 883.43023 635.75581
## 1364 883.43023 635.75581
## 1365 883.43023 635.75581
## 1366 883.43023 635.75581
## 1367 883.43023 635.75581
## 1368 883.43023 635.75581
## 1369 422.09302 2162.79070
## 1370 422.09302 2162.79070
## 1371 422.09302 2162.79070
## 1372 422.09302 2162.79070
## 1373 422.09302 2162.79070
## 1374 422.09302 2162.79070
## 1375 422.09302 2162.79070
## 1376 422.09302 2162.79070
## 1377 422.09302 2162.79070
## 1378 422.09302 2162.79070
## 1379 422.09302 2162.79070
## 1380 422.09302 2162.79070
## 1381 422.09302 2162.79070
## 1382 422.09302 2162.79070
## 1383 422.09302 2162.79070
## 1384 422.09302 2162.79070
## 1385 422.09302 2162.79070
## 1386 422.09302 2162.79070
## 1387 422.09302 2162.79070
## 1388 422.09302 2162.79070
## 1389 422.09302 2162.79070
## 1390 422.09302 2162.79070
## 1391 422.09302 2162.79070
## 1392 422.09302 2162.79070
## 1393 1351.74419 1090.11628
## 1394 1351.74419 1090.11628
## 1395 1351.74419 1090.11628
## 1396 1351.74419 1090.11628
## 1397 1351.74419 1090.11628
## 1398 1351.74419 1090.11628
## 1399 1351.74419 1090.11628
## 1400 1351.74419 1090.11628
## 1401 1351.74419 1090.11628
## 1402 1351.74419 1090.11628
## 1403 1351.74419 1090.11628
## 1404 1351.74419 1090.11628
## 1405 1351.74419 1090.11628
## 1406 1351.74419 1090.11628
## 1407 1351.74419 1090.11628
## 1408 1351.74419 1090.11628
## 1409 1351.74419 1090.11628
## 1410 1351.74419 1090.11628
## 1411 1351.74419 1090.11628
## 1412 1351.74419 1090.11628
## 1413 1351.74419 1090.11628
## 1414 1351.74419 1090.11628
## 1415 1351.74419 1090.11628
## 1416 1351.74419 1090.11628
## 1417 2673.83721 0.00000
## 1418 2673.83721 0.00000
## 1419 2673.83721 0.00000
## 1420 2673.83721 0.00000
## 1421 2673.83721 0.00000
## 1422 2673.83721 0.00000
## 1423 2673.83721 0.00000
## 1424 2673.83721 0.00000
## 1425 2673.83721 0.00000
## 1426 2673.83721 0.00000
## 1427 2673.83721 0.00000
## 1428 2673.83721 0.00000
## 1429 2673.83721 0.00000
## 1430 2673.83721 0.00000
## 1431 2673.83721 0.00000
## 1432 2673.83721 0.00000
## 1433 2673.83721 0.00000
## 1434 2673.83721 0.00000
## 1435 2673.83721 0.00000
## 1436 2673.83721 0.00000
## 1437 2673.83721 0.00000
## 1438 2673.83721 0.00000
## 1439 2673.83721 0.00000
## 1440 2673.83721 0.00000
## 1441 1648.25581 2215.11628
## 1442 1648.25581 2215.11628
## 1443 1648.25581 2215.11628
## 1444 1648.25581 2215.11628
## 1445 1648.25581 2215.11628
## 1446 1648.25581 2215.11628
## 1447 1648.25581 2215.11628
## 1448 1648.25581 2215.11628
## 1449 1648.25581 2215.11628
## 1450 1648.25581 2215.11628
## 1451 1648.25581 2215.11628
## 1452 1648.25581 2215.11628
## 1453 1648.25581 2215.11628
## 1454 1648.25581 2215.11628
## 1455 1648.25581 2215.11628
## 1456 1648.25581 2215.11628
## 1457 1648.25581 2215.11628
## 1458 1648.25581 2215.11628
## 1459 1648.25581 2215.11628
## 1460 1648.25581 2215.11628
## 1461 1648.25581 2215.11628
## 1462 1648.25581 2215.11628
## 1463 1648.25581 2215.11628
## 1464 1648.25581 2215.11628
## 1465 366.27907 0.00000
## 1466 366.27907 0.00000
## 1467 366.27907 0.00000
## 1468 366.27907 0.00000
## 1469 366.27907 0.00000
## 1470 366.27907 0.00000
## 1471 366.27907 0.00000
## 1472 366.27907 0.00000
## 1473 366.27907 0.00000
## 1474 366.27907 0.00000
## 1475 366.27907 0.00000
## 1476 366.27907 0.00000
## 1477 366.27907 0.00000
## 1478 366.27907 0.00000
## 1479 366.27907 0.00000
## 1480 366.27907 0.00000
## 1481 366.27907 0.00000
## 1482 366.27907 0.00000
## 1483 366.27907 0.00000
## 1484 366.27907 0.00000
## 1485 366.27907 0.00000
## 1486 366.27907 0.00000
## 1487 366.27907 0.00000
## 1488 366.27907 0.00000
## 1489 514.53488 0.00000
## 1490 514.53488 0.00000
## 1491 514.53488 0.00000
## 1492 514.53488 0.00000
## 1493 514.53488 0.00000
## 1494 514.53488 0.00000
## 1495 514.53488 0.00000
## 1496 514.53488 0.00000
## 1497 514.53488 0.00000
## 1498 514.53488 0.00000
## 1499 514.53488 0.00000
## 1500 514.53488 0.00000
## 1501 514.53488 0.00000
## 1502 514.53488 0.00000
## 1503 514.53488 0.00000
## 1504 514.53488 0.00000
## 1505 514.53488 0.00000
## 1506 514.53488 0.00000
## 1507 514.53488 0.00000
## 1508 514.53488 0.00000
## 1509 514.53488 0.00000
## 1510 514.53488 0.00000
## 1511 514.53488 0.00000
## 1512 514.53488 0.00000
## 1513 0.00000 0.00000
## 1514 0.00000 0.00000
## 1515 0.00000 0.00000
## 1516 0.00000 0.00000
## 1517 0.00000 0.00000
## 1518 0.00000 0.00000
## 1519 0.00000 0.00000
## 1520 0.00000 0.00000
## 1521 0.00000 0.00000
## 1522 0.00000 0.00000
## 1523 0.00000 0.00000
## 1524 0.00000 0.00000
## 1525 0.00000 0.00000
## 1526 0.00000 0.00000
## 1527 0.00000 0.00000
## 1528 0.00000 0.00000
## 1529 0.00000 0.00000
## 1530 0.00000 0.00000
## 1531 0.00000 0.00000
## 1532 0.00000 0.00000
## 1533 0.00000 0.00000
## 1534 0.00000 0.00000
## 1535 0.00000 0.00000
## 1536 0.00000 0.00000
## 1537 883.43023 635.75581
## 1538 883.43023 635.75581
## 1539 883.43023 635.75581
## 1540 883.43023 635.75581
## 1541 883.43023 635.75581
## 1542 883.43023 635.75581
## 1543 883.43023 635.75581
## 1544 883.43023 635.75581
## 1545 883.43023 635.75581
## 1546 883.43023 635.75581
## 1547 883.43023 635.75581
## 1548 883.43023 635.75581
## 1549 883.43023 635.75581
## 1550 883.43023 635.75581
## 1551 883.43023 635.75581
## 1552 883.43023 635.75581
## 1553 883.43023 635.75581
## 1554 883.43023 635.75581
## 1555 883.43023 635.75581
## 1556 883.43023 635.75581
## 1557 883.43023 635.75581
## 1558 883.43023 635.75581
## 1559 883.43023 635.75581
## 1560 883.43023 635.75581
## 1561 980.23256 0.00000
## 1562 980.23256 0.00000
## 1563 980.23256 0.00000
## 1564 980.23256 0.00000
## 1565 980.23256 0.00000
## 1566 980.23256 0.00000
## 1567 980.23256 0.00000
## 1568 980.23256 0.00000
## 1569 980.23256 0.00000
## 1570 980.23256 0.00000
## 1571 980.23256 0.00000
## 1572 980.23256 0.00000
## 1573 980.23256 0.00000
## 1574 980.23256 0.00000
## 1575 980.23256 0.00000
## 1576 980.23256 0.00000
## 1577 980.23256 0.00000
## 1578 980.23256 0.00000
## 1579 980.23256 0.00000
## 1580 980.23256 0.00000
## 1581 980.23256 0.00000
## 1582 980.23256 0.00000
## 1583 980.23256 0.00000
## 1584 980.23256 0.00000
## 1585 1430.23256 235.46512
## 1586 1430.23256 235.46512
## 1587 1430.23256 235.46512
## 1588 1430.23256 235.46512
## 1589 1430.23256 235.46512
## 1590 1430.23256 235.46512
## 1591 1430.23256 235.46512
## 1592 1430.23256 235.46512
## 1593 1430.23256 235.46512
## 1594 1430.23256 235.46512
## 1595 1430.23256 235.46512
## 1596 1430.23256 235.46512
## 1597 1430.23256 235.46512
## 1598 1430.23256 235.46512
## 1599 1430.23256 235.46512
## 1600 1430.23256 235.46512
## 1601 1430.23256 235.46512
## 1602 1430.23256 235.46512
## 1603 1430.23256 235.46512
## 1604 1430.23256 235.46512
## 1605 1430.23256 235.46512
## 1606 1430.23256 235.46512
## 1607 1430.23256 235.46512
## 1608 1430.23256 235.46512
## 1609 1322.09302 0.00000
## 1610 1322.09302 0.00000
## 1611 1322.09302 0.00000
## 1612 1322.09302 0.00000
## 1613 1322.09302 0.00000
## 1614 1322.09302 0.00000
## 1615 1322.09302 0.00000
## 1616 1322.09302 0.00000
## 1617 1322.09302 0.00000
## 1618 1322.09302 0.00000
## 1619 1322.09302 0.00000
## 1620 1322.09302 0.00000
## 1621 1322.09302 0.00000
## 1622 1322.09302 0.00000
## 1623 1322.09302 0.00000
## 1624 1322.09302 0.00000
## 1625 1322.09302 0.00000
## 1626 1322.09302 0.00000
## 1627 1322.09302 0.00000
## 1628 1322.09302 0.00000
## 1629 1322.09302 0.00000
## 1630 1322.09302 0.00000
## 1631 1322.09302 0.00000
## 1632 1322.09302 0.00000
## 1633 1055.23256 1081.39535
## 1634 1055.23256 1081.39535
## 1635 1055.23256 1081.39535
## 1636 1055.23256 1081.39535
## 1637 1055.23256 1081.39535
## 1638 1055.23256 1081.39535
## 1639 1055.23256 1081.39535
## 1640 1055.23256 1081.39535
## 1641 1055.23256 1081.39535
## 1642 1055.23256 1081.39535
## 1643 1055.23256 1081.39535
## 1644 1055.23256 1081.39535
## 1645 1055.23256 1081.39535
## 1646 1055.23256 1081.39535
## 1647 1055.23256 1081.39535
## 1648 1055.23256 1081.39535
## 1649 1055.23256 1081.39535
## 1650 1055.23256 1081.39535
## 1651 1055.23256 1081.39535
## 1652 1055.23256 1081.39535
## 1653 1055.23256 1081.39535
## 1654 1055.23256 1081.39535
## 1655 1055.23256 1081.39535
## 1656 1055.23256 1081.39535
## 1657 1561.04651 0.00000
## 1658 1561.04651 0.00000
## 1659 1561.04651 0.00000
## 1660 1561.04651 0.00000
## 1661 1561.04651 0.00000
## 1662 1561.04651 0.00000
## 1663 1561.04651 0.00000
## 1664 1561.04651 0.00000
## 1665 1561.04651 0.00000
## 1666 1561.04651 0.00000
## 1667 1561.04651 0.00000
## 1668 1561.04651 0.00000
## 1669 1561.04651 0.00000
## 1670 1561.04651 0.00000
## 1671 1561.04651 0.00000
## 1672 1561.04651 0.00000
## 1673 1561.04651 0.00000
## 1674 1561.04651 0.00000
## 1675 1561.04651 0.00000
## 1676 1561.04651 0.00000
## 1677 1561.04651 0.00000
## 1678 1561.04651 0.00000
## 1679 1561.04651 0.00000
## 1680 1561.04651 0.00000
## 1681 1609.01163 0.00000
## 1682 1609.01163 0.00000
## 1683 1609.01163 0.00000
## 1684 1609.01163 0.00000
## 1685 1609.01163 0.00000
## 1686 1609.01163 0.00000
## 1687 1609.01163 0.00000
## 1688 1609.01163 0.00000
## 1689 1609.01163 0.00000
## 1690 1609.01163 0.00000
## 1691 1609.01163 0.00000
## 1692 1609.01163 0.00000
## 1693 1609.01163 0.00000
## 1694 1609.01163 0.00000
## 1695 1609.01163 0.00000
## 1696 1609.01163 0.00000
## 1697 1609.01163 0.00000
## 1698 1609.01163 0.00000
## 1699 1609.01163 0.00000
## 1700 1609.01163 0.00000
## 1701 1609.01163 0.00000
## 1702 1609.01163 0.00000
## 1703 1609.01163 0.00000
## 1704 1609.01163 0.00000
## 1705 0.00000 0.00000
## 1706 0.00000 0.00000
## 1707 0.00000 0.00000
## 1708 0.00000 0.00000
## 1709 0.00000 0.00000
## 1710 0.00000 0.00000
## 1711 0.00000 0.00000
## 1712 0.00000 0.00000
## 1713 0.00000 0.00000
## 1714 0.00000 0.00000
## 1715 0.00000 0.00000
## 1716 0.00000 0.00000
## 1717 0.00000 0.00000
## 1718 0.00000 0.00000
## 1719 0.00000 0.00000
## 1720 0.00000 0.00000
## 1721 0.00000 0.00000
## 1722 0.00000 0.00000
## 1723 0.00000 0.00000
## 1724 0.00000 0.00000
## 1725 0.00000 0.00000
## 1726 0.00000 0.00000
## 1727 0.00000 0.00000
## 1728 0.00000 0.00000
## 1729 883.43023 635.75581
## 1730 883.43023 635.75581
## 1731 883.43023 635.75581
## 1732 883.43023 635.75581
## 1733 883.43023 635.75581
## 1734 883.43023 635.75581
## 1735 883.43023 635.75581
## 1736 883.43023 635.75581
## 1737 883.43023 635.75581
## 1738 883.43023 635.75581
## 1739 883.43023 635.75581
## 1740 883.43023 635.75581
## 1741 883.43023 635.75581
## 1742 883.43023 635.75581
## 1743 883.43023 635.75581
## 1744 883.43023 635.75581
## 1745 883.43023 635.75581
## 1746 883.43023 635.75581
## 1747 883.43023 635.75581
## 1748 883.43023 635.75581
## 1749 883.43023 635.75581
## 1750 883.43023 635.75581
## 1751 883.43023 635.75581
## 1752 883.43023 635.75581
## 1753 3221.51163 0.00000
## 1754 3221.51163 0.00000
## 1755 3221.51163 0.00000
## 1756 3221.51163 0.00000
## 1757 3221.51163 0.00000
## 1758 3221.51163 0.00000
## 1759 3221.51163 0.00000
## 1760 3221.51163 0.00000
## 1761 3221.51163 0.00000
## 1762 3221.51163 0.00000
## 1763 3221.51163 0.00000
## 1764 3221.51163 0.00000
## 1765 3221.51163 0.00000
## 1766 3221.51163 0.00000
## 1767 3221.51163 0.00000
## 1768 3221.51163 0.00000
## 1769 3221.51163 0.00000
## 1770 3221.51163 0.00000
## 1771 3221.51163 0.00000
## 1772 3221.51163 0.00000
## 1773 3221.51163 0.00000
## 1774 3221.51163 0.00000
## 1775 3221.51163 0.00000
## 1776 3221.51163 0.00000
## 1777 322.67442 1055.23256
## 1778 322.67442 1055.23256
## 1779 322.67442 1055.23256
## 1780 322.67442 1055.23256
## 1781 322.67442 1055.23256
## 1782 322.67442 1055.23256
## 1783 322.67442 1055.23256
## 1784 322.67442 1055.23256
## 1785 322.67442 1055.23256
## 1786 322.67442 1055.23256
## 1787 322.67442 1055.23256
## 1788 322.67442 1055.23256
## 1789 322.67442 1055.23256
## 1790 322.67442 1055.23256
## 1791 322.67442 1055.23256
## 1792 322.67442 1055.23256
## 1793 322.67442 1055.23256
## 1794 322.67442 1055.23256
## 1795 322.67442 1055.23256
## 1796 322.67442 1055.23256
## 1797 322.67442 1055.23256
## 1798 322.67442 1055.23256
## 1799 322.67442 1055.23256
## 1800 322.67442 1055.23256
## 1801 3005.23256 3427.32558
## 1802 3005.23256 3427.32558
## 1803 3005.23256 3427.32558
## 1804 3005.23256 3427.32558
## 1805 3005.23256 3427.32558
## 1806 3005.23256 3427.32558
## 1807 3005.23256 3427.32558
## 1808 3005.23256 3427.32558
## 1809 3005.23256 3427.32558
## 1810 3005.23256 3427.32558
## 1811 3005.23256 3427.32558
## 1812 3005.23256 3427.32558
## 1813 3005.23256 3427.32558
## 1814 3005.23256 3427.32558
## 1815 3005.23256 3427.32558
## 1816 3005.23256 3427.32558
## 1817 3005.23256 3427.32558
## 1818 3005.23256 3427.32558
## 1819 3005.23256 3427.32558
## 1820 3005.23256 3427.32558
## 1821 3005.23256 3427.32558
## 1822 3005.23256 3427.32558
## 1823 3005.23256 3427.32558
## 1824 3005.23256 3427.32558
## 1825 409.88372 3706.39535
## 1826 409.88372 3706.39535
## 1827 409.88372 3706.39535
## 1828 409.88372 3706.39535
## 1829 409.88372 3706.39535
## 1830 409.88372 3706.39535
## 1831 409.88372 3706.39535
## 1832 409.88372 3706.39535
## 1833 409.88372 3706.39535
## 1834 409.88372 3706.39535
## 1835 409.88372 3706.39535
## 1836 409.88372 3706.39535
## 1837 409.88372 3706.39535
## 1838 409.88372 3706.39535
## 1839 409.88372 3706.39535
## 1840 409.88372 3706.39535
## 1841 409.88372 3706.39535
## 1842 409.88372 3706.39535
## 1843 409.88372 3706.39535
## 1844 409.88372 3706.39535
## 1845 409.88372 3706.39535
## 1846 409.88372 3706.39535
## 1847 409.88372 3706.39535
## 1848 409.88372 3706.39535
## 1849 2406.97674 1090.11628
## 1850 2406.97674 1090.11628
## 1851 2406.97674 1090.11628
## 1852 2406.97674 1090.11628
## 1853 2406.97674 1090.11628
## 1854 2406.97674 1090.11628
## 1855 2406.97674 1090.11628
## 1856 2406.97674 1090.11628
## 1857 2406.97674 1090.11628
## 1858 2406.97674 1090.11628
## 1859 2406.97674 1090.11628
## 1860 2406.97674 1090.11628
## 1861 2406.97674 1090.11628
## 1862 2406.97674 1090.11628
## 1863 2406.97674 1090.11628
## 1864 2406.97674 1090.11628
## 1865 2406.97674 1090.11628
## 1866 2406.97674 1090.11628
## 1867 2406.97674 1090.11628
## 1868 2406.97674 1090.11628
## 1869 2406.97674 1090.11628
## 1870 2406.97674 1090.11628
## 1871 2406.97674 1090.11628
## 1872 2406.97674 1090.11628
## 1873 2132.26744 1090.11628
## 1874 2132.26744 1090.11628
## 1875 2132.26744 1090.11628
## 1876 2132.26744 1090.11628
## 1877 2132.26744 1090.11628
## 1878 2132.26744 1090.11628
## 1879 2132.26744 1090.11628
## 1880 2132.26744 1090.11628
## 1881 2132.26744 1090.11628
## 1882 2132.26744 1090.11628
## 1883 2132.26744 1090.11628
## 1884 2132.26744 1090.11628
## 1885 2132.26744 1090.11628
## 1886 2132.26744 1090.11628
## 1887 2132.26744 1090.11628
## 1888 2132.26744 1090.11628
## 1889 2132.26744 1090.11628
## 1890 2132.26744 1090.11628
## 1891 2132.26744 1090.11628
## 1892 2132.26744 1090.11628
## 1893 2132.26744 1090.11628
## 1894 2132.26744 1090.11628
## 1895 2132.26744 1090.11628
## 1896 2132.26744 1090.11628
## 1897 1848.83721 0.00000
## 1898 1848.83721 0.00000
## 1899 1848.83721 0.00000
## 1900 1848.83721 0.00000
## 1901 1848.83721 0.00000
## 1902 1848.83721 0.00000
## 1903 1848.83721 0.00000
## 1904 1848.83721 0.00000
## 1905 1848.83721 0.00000
## 1906 1848.83721 0.00000
## 1907 1848.83721 0.00000
## 1908 1848.83721 0.00000
## 1909 1848.83721 0.00000
## 1910 1848.83721 0.00000
## 1911 1848.83721 0.00000
## 1912 1848.83721 0.00000
## 1913 1848.83721 0.00000
## 1914 1848.83721 0.00000
## 1915 1848.83721 0.00000
## 1916 1848.83721 0.00000
## 1917 1848.83721 0.00000
## 1918 1848.83721 0.00000
## 1919 1848.83721 0.00000
## 1920 1848.83721 0.00000
## 1921 883.43023 635.75581
## 1922 883.43023 635.75581
## 1923 883.43023 635.75581
## 1924 883.43023 635.75581
## 1925 883.43023 635.75581
## 1926 883.43023 635.75581
## 1927 883.43023 635.75581
## 1928 883.43023 635.75581
## 1929 883.43023 635.75581
## 1930 883.43023 635.75581
## 1931 883.43023 635.75581
## 1932 883.43023 635.75581
## 1933 883.43023 635.75581
## 1934 883.43023 635.75581
## 1935 883.43023 635.75581
## 1936 883.43023 635.75581
## 1937 883.43023 635.75581
## 1938 883.43023 635.75581
## 1939 883.43023 635.75581
## 1940 883.43023 635.75581
## 1941 883.43023 635.75581
## 1942 883.43023 635.75581
## 1943 883.43023 635.75581
## 1944 883.43023 635.75581
## 1945 2014.53488 1055.23256
## 1946 2014.53488 1055.23256
## 1947 2014.53488 1055.23256
## 1948 2014.53488 1055.23256
## 1949 2014.53488 1055.23256
## 1950 2014.53488 1055.23256
## 1951 2014.53488 1055.23256
## 1952 2014.53488 1055.23256
## 1953 2014.53488 1055.23256
## 1954 2014.53488 1055.23256
## 1955 2014.53488 1055.23256
## 1956 2014.53488 1055.23256
## 1957 2014.53488 1055.23256
## 1958 2014.53488 1055.23256
## 1959 2014.53488 1055.23256
## 1960 2014.53488 1055.23256
## 1961 2014.53488 1055.23256
## 1962 2014.53488 1055.23256
## 1963 2014.53488 1055.23256
## 1964 2014.53488 1055.23256
## 1965 2014.53488 1055.23256
## 1966 2014.53488 1055.23256
## 1967 2014.53488 1055.23256
## 1968 2014.53488 1055.23256
## 1969 1090.11628 1090.11628
## 1970 1090.11628 1090.11628
## 1971 1090.11628 1090.11628
## 1972 1090.11628 1090.11628
## 1973 1090.11628 1090.11628
## 1974 1090.11628 1090.11628
## 1975 1090.11628 1090.11628
## 1976 1090.11628 1090.11628
## 1977 1090.11628 1090.11628
## 1978 1090.11628 1090.11628
## 1979 1090.11628 1090.11628
## 1980 1090.11628 1090.11628
## 1981 1090.11628 1090.11628
## 1982 1090.11628 1090.11628
## 1983 1090.11628 1090.11628
## 1984 1090.11628 1090.11628
## 1985 1090.11628 1090.11628
## 1986 1090.11628 1090.11628
## 1987 1090.11628 1090.11628
## 1988 1090.11628 1090.11628
## 1989 1090.11628 1090.11628
## 1990 1090.11628 1090.11628
## 1991 1090.11628 1090.11628
## 1992 1090.11628 1090.11628
## 1993 3636.62791 2180.23256
## 1994 3636.62791 2180.23256
## 1995 3636.62791 2180.23256
## 1996 3636.62791 2180.23256
## 1997 3636.62791 2180.23256
## 1998 3636.62791 2180.23256
## 1999 3636.62791 2180.23256
## 2000 3636.62791 2180.23256
## 2001 3636.62791 2180.23256
## 2002 3636.62791 2180.23256
## 2003 3636.62791 2180.23256
## 2004 3636.62791 2180.23256
## 2005 3636.62791 2180.23256
## 2006 3636.62791 2180.23256
## 2007 3636.62791 2180.23256
## 2008 3636.62791 2180.23256
## 2009 3636.62791 2180.23256
## 2010 3636.62791 2180.23256
## 2011 3636.62791 2180.23256
## 2012 3636.62791 2180.23256
## 2013 3636.62791 2180.23256
## 2014 3636.62791 2180.23256
## 2015 3636.62791 2180.23256
## 2016 3636.62791 2180.23256
## 2017 1709.30233 549.41860
## 2018 1709.30233 549.41860
## 2019 1709.30233 549.41860
## 2020 1709.30233 549.41860
## 2021 1709.30233 549.41860
## 2022 1709.30233 549.41860
## 2023 1709.30233 549.41860
## 2024 1709.30233 549.41860
## 2025 1709.30233 549.41860
## 2026 1709.30233 549.41860
## 2027 1709.30233 549.41860
## 2028 1709.30233 549.41860
## 2029 1709.30233 549.41860
## 2030 1709.30233 549.41860
## 2031 1709.30233 549.41860
## 2032 1709.30233 549.41860
## 2033 1709.30233 549.41860
## 2034 1709.30233 549.41860
## 2035 1709.30233 549.41860
## 2036 1709.30233 549.41860
## 2037 1709.30233 549.41860
## 2038 1709.30233 549.41860
## 2039 1709.30233 549.41860
## 2040 1709.30233 549.41860
## 2041 540.69767 0.00000
## 2042 540.69767 0.00000
## 2043 540.69767 0.00000
## 2044 540.69767 0.00000
## 2045 540.69767 0.00000
## 2046 540.69767 0.00000
## 2047 540.69767 0.00000
## 2048 540.69767 0.00000
## 2049 540.69767 0.00000
## 2050 540.69767 0.00000
## 2051 540.69767 0.00000
## 2052 540.69767 0.00000
## 2053 540.69767 0.00000
## 2054 540.69767 0.00000
## 2055 540.69767 0.00000
## 2056 540.69767 0.00000
## 2057 540.69767 0.00000
## 2058 540.69767 0.00000
## 2059 540.69767 0.00000
## 2060 540.69767 0.00000
## 2061 540.69767 0.00000
## 2062 540.69767 0.00000
## 2063 540.69767 0.00000
## 2064 540.69767 0.00000
## 2065 1263.66279 0.00000
## 2066 1263.66279 0.00000
## 2067 1263.66279 0.00000
## 2068 1263.66279 0.00000
## 2069 1263.66279 0.00000
## 2070 1263.66279 0.00000
## 2071 1263.66279 0.00000
## 2072 1263.66279 0.00000
## 2073 1263.66279 0.00000
## 2074 1263.66279 0.00000
## 2075 1263.66279 0.00000
## 2076 1263.66279 0.00000
## 2077 1263.66279 0.00000
## 2078 1263.66279 0.00000
## 2079 1263.66279 0.00000
## 2080 1263.66279 0.00000
## 2081 1263.66279 0.00000
## 2082 1263.66279 0.00000
## 2083 1263.66279 0.00000
## 2084 1263.66279 0.00000
## 2085 1263.66279 0.00000
## 2086 1263.66279 0.00000
## 2087 1263.66279 0.00000
## 2088 1263.66279 0.00000
## 2089 1063.95349 126.45349
## 2090 1063.95349 126.45349
## 2091 1063.95349 126.45349
## 2092 1063.95349 126.45349
## 2093 1063.95349 126.45349
## 2094 1063.95349 126.45349
## 2095 1063.95349 126.45349
## 2096 1063.95349 126.45349
## 2097 1063.95349 126.45349
## 2098 1063.95349 126.45349
## 2099 1063.95349 126.45349
## 2100 1063.95349 126.45349
## 2101 1063.95349 126.45349
## 2102 1063.95349 126.45349
## 2103 1063.95349 126.45349
## 2104 1063.95349 126.45349
## 2105 1063.95349 126.45349
## 2106 1063.95349 126.45349
## 2107 1063.95349 126.45349
## 2108 1063.95349 126.45349
## 2109 1063.95349 126.45349
## 2110 1063.95349 126.45349
## 2111 1063.95349 126.45349
## 2112 1063.95349 126.45349
## 2113 883.43023 635.75581
## 2114 883.43023 635.75581
## 2115 883.43023 635.75581
## 2116 883.43023 635.75581
## 2117 883.43023 635.75581
## 2118 883.43023 635.75581
## 2119 883.43023 635.75581
## 2120 883.43023 635.75581
## 2121 883.43023 635.75581
## 2122 883.43023 635.75581
## 2123 883.43023 635.75581
## 2124 883.43023 635.75581
## 2125 883.43023 635.75581
## 2126 883.43023 635.75581
## 2127 883.43023 635.75581
## 2128 883.43023 635.75581
## 2129 883.43023 635.75581
## 2130 883.43023 635.75581
## 2131 883.43023 635.75581
## 2132 883.43023 635.75581
## 2133 883.43023 635.75581
## 2134 883.43023 635.75581
## 2135 883.43023 635.75581
## 2136 883.43023 635.75581
## 2137 5869.18605 1029.06977
## 2138 5869.18605 1029.06977
## 2139 5869.18605 1029.06977
## 2140 5869.18605 1029.06977
## 2141 5869.18605 1029.06977
## 2142 5869.18605 1029.06977
## 2143 5869.18605 1029.06977
## 2144 5869.18605 1029.06977
## 2145 5869.18605 1029.06977
## 2146 5869.18605 1029.06977
## 2147 5869.18605 1029.06977
## 2148 5869.18605 1029.06977
## 2149 5869.18605 1029.06977
## 2150 5869.18605 1029.06977
## 2151 5869.18605 1029.06977
## 2152 5869.18605 1029.06977
## 2153 5869.18605 1029.06977
## 2154 5869.18605 1029.06977
## 2155 5869.18605 1029.06977
## 2156 5869.18605 1029.06977
## 2157 5869.18605 1029.06977
## 2158 5869.18605 1029.06977
## 2159 5869.18605 1029.06977
## 2160 5869.18605 1029.06977
## 2161 0.00000 0.00000
## 2162 0.00000 0.00000
## 2163 0.00000 0.00000
## 2164 0.00000 0.00000
## 2165 0.00000 0.00000
## 2166 0.00000 0.00000
## 2167 0.00000 0.00000
## 2168 0.00000 0.00000
## 2169 0.00000 0.00000
## 2170 0.00000 0.00000
## 2171 0.00000 0.00000
## 2172 0.00000 0.00000
## 2173 0.00000 0.00000
## 2174 0.00000 0.00000
## 2175 0.00000 0.00000
## 2176 0.00000 0.00000
## 2177 0.00000 0.00000
## 2178 0.00000 0.00000
## 2179 0.00000 0.00000
## 2180 0.00000 0.00000
## 2181 0.00000 0.00000
## 2182 0.00000 0.00000
## 2183 0.00000 0.00000
## 2184 0.00000 0.00000
## 2185 0.00000 2188.95349
## 2186 0.00000 2188.95349
## 2187 0.00000 2188.95349
## 2188 0.00000 2188.95349
## 2189 0.00000 2188.95349
## 2190 0.00000 2188.95349
## 2191 0.00000 2188.95349
## 2192 0.00000 2188.95349
## 2193 0.00000 2188.95349
## 2194 0.00000 2188.95349
## 2195 0.00000 2188.95349
## 2196 0.00000 2188.95349
## 2197 0.00000 2188.95349
## 2198 0.00000 2188.95349
## 2199 0.00000 2188.95349
## 2200 0.00000 2188.95349
## 2201 0.00000 2188.95349
## 2202 0.00000 2188.95349
## 2203 0.00000 2188.95349
## 2204 0.00000 2188.95349
## 2205 0.00000 2188.95349
## 2206 0.00000 2188.95349
## 2207 0.00000 2188.95349
## 2208 0.00000 2188.95349
## 2209 0.00000 3654.06977
## 2210 0.00000 3654.06977
## 2211 0.00000 3654.06977
## 2212 0.00000 3654.06977
## 2213 0.00000 3654.06977
## 2214 0.00000 3654.06977
## 2215 0.00000 3654.06977
## 2216 0.00000 3654.06977
## 2217 0.00000 3654.06977
## 2218 0.00000 3654.06977
## 2219 0.00000 3654.06977
## 2220 0.00000 3654.06977
## 2221 0.00000 3654.06977
## 2222 0.00000 3654.06977
## 2223 0.00000 3654.06977
## 2224 0.00000 3654.06977
## 2225 0.00000 3654.06977
## 2226 0.00000 3654.06977
## 2227 0.00000 3654.06977
## 2228 0.00000 3654.06977
## 2229 0.00000 3654.06977
## 2230 0.00000 3654.06977
## 2231 0.00000 3654.06977
## 2232 0.00000 3654.06977
## 2233 976.74419 287.79070
## 2234 976.74419 287.79070
## 2235 976.74419 287.79070
## 2236 976.74419 287.79070
## 2237 976.74419 287.79070
## 2238 976.74419 287.79070
## 2239 976.74419 287.79070
## 2240 976.74419 287.79070
## 2241 976.74419 287.79070
## 2242 976.74419 287.79070
## 2243 976.74419 287.79070
## 2244 976.74419 287.79070
## 2245 976.74419 287.79070
## 2246 976.74419 287.79070
## 2247 976.74419 287.79070
## 2248 976.74419 287.79070
## 2249 976.74419 287.79070
## 2250 976.74419 287.79070
## 2251 976.74419 287.79070
## 2252 976.74419 287.79070
## 2253 976.74419 287.79070
## 2254 976.74419 287.79070
## 2255 976.74419 287.79070
## 2256 976.74419 287.79070
## 2257 1442.44186 0.00000
## 2258 1442.44186 0.00000
## 2259 1442.44186 0.00000
## 2260 1442.44186 0.00000
## 2261 1442.44186 0.00000
## 2262 1442.44186 0.00000
## 2263 1442.44186 0.00000
## 2264 1442.44186 0.00000
## 2265 1442.44186 0.00000
## 2266 1442.44186 0.00000
## 2267 1442.44186 0.00000
## 2268 1442.44186 0.00000
## 2269 1442.44186 0.00000
## 2270 1442.44186 0.00000
## 2271 1442.44186 0.00000
## 2272 1442.44186 0.00000
## 2273 1442.44186 0.00000
## 2274 1442.44186 0.00000
## 2275 1442.44186 0.00000
## 2276 1442.44186 0.00000
## 2277 1442.44186 0.00000
## 2278 1442.44186 0.00000
## 2279 1442.44186 0.00000
## 2280 1442.44186 0.00000
## 2281 1068.31395 0.00000
## 2282 1068.31395 0.00000
## 2283 1068.31395 0.00000
## 2284 1068.31395 0.00000
## 2285 1068.31395 0.00000
## 2286 1068.31395 0.00000
## 2287 1068.31395 0.00000
## 2288 1068.31395 0.00000
## 2289 1068.31395 0.00000
## 2290 1068.31395 0.00000
## 2291 1068.31395 0.00000
## 2292 1068.31395 0.00000
## 2293 1068.31395 0.00000
## 2294 1068.31395 0.00000
## 2295 1068.31395 0.00000
## 2296 1068.31395 0.00000
## 2297 1068.31395 0.00000
## 2298 1068.31395 0.00000
## 2299 1068.31395 0.00000
## 2300 1068.31395 0.00000
## 2301 1068.31395 0.00000
## 2302 1068.31395 0.00000
## 2303 1068.31395 0.00000
## 2304 1068.31395 0.00000
## 2305 883.43023 635.75581
## 2306 883.43023 635.75581
## 2307 883.43023 635.75581
## 2308 883.43023 635.75581
## 2309 883.43023 635.75581
## 2310 883.43023 635.75581
## 2311 883.43023 635.75581
## 2312 883.43023 635.75581
## 2313 883.43023 635.75581
## 2314 883.43023 635.75581
## 2315 883.43023 635.75581
## 2316 883.43023 635.75581
## 2317 883.43023 635.75581
## 2318 883.43023 635.75581
## 2319 883.43023 635.75581
## 2320 883.43023 635.75581
## 2321 883.43023 635.75581
## 2322 883.43023 635.75581
## 2323 883.43023 635.75581
## 2324 883.43023 635.75581
## 2325 883.43023 635.75581
## 2326 883.43023 635.75581
## 2327 883.43023 635.75581
## 2328 883.43023 635.75581
## 2329 305.23256 2162.79070
## 2330 305.23256 2162.79070
## 2331 305.23256 2162.79070
## 2332 305.23256 2162.79070
## 2333 305.23256 2162.79070
## 2334 305.23256 2162.79070
## 2335 305.23256 2162.79070
## 2336 305.23256 2162.79070
## 2337 305.23256 2162.79070
## 2338 305.23256 2162.79070
## 2339 305.23256 2162.79070
## 2340 305.23256 2162.79070
## 2341 305.23256 2162.79070
## 2342 305.23256 2162.79070
## 2343 305.23256 2162.79070
## 2344 305.23256 2162.79070
## 2345 305.23256 2162.79070
## 2346 305.23256 2162.79070
## 2347 305.23256 2162.79070
## 2348 305.23256 2162.79070
## 2349 305.23256 2162.79070
## 2350 305.23256 2162.79070
## 2351 305.23256 2162.79070
## 2352 305.23256 2162.79070
## 2353 1029.06977 1090.11628
## 2354 1029.06977 1090.11628
## 2355 1029.06977 1090.11628
## 2356 1029.06977 1090.11628
## 2357 1029.06977 1090.11628
## 2358 1029.06977 1090.11628
## 2359 1029.06977 1090.11628
## 2360 1029.06977 1090.11628
## 2361 1029.06977 1090.11628
## 2362 1029.06977 1090.11628
## 2363 1029.06977 1090.11628
## 2364 1029.06977 1090.11628
## 2365 1029.06977 1090.11628
## 2366 1029.06977 1090.11628
## 2367 1029.06977 1090.11628
## 2368 1029.06977 1090.11628
## 2369 1029.06977 1090.11628
## 2370 1029.06977 1090.11628
## 2371 1029.06977 1090.11628
## 2372 1029.06977 1090.11628
## 2373 1029.06977 1090.11628
## 2374 1029.06977 1090.11628
## 2375 1029.06977 1090.11628
## 2376 1029.06977 1090.11628
## 2377 2581.39535 0.00000
## 2378 2581.39535 0.00000
## 2379 2581.39535 0.00000
## 2380 2581.39535 0.00000
## 2381 2581.39535 0.00000
## 2382 2581.39535 0.00000
## 2383 2581.39535 0.00000
## 2384 2581.39535 0.00000
## 2385 2581.39535 0.00000
## 2386 2581.39535 0.00000
## 2387 2581.39535 0.00000
## 2388 2581.39535 0.00000
## 2389 2581.39535 0.00000
## 2390 2581.39535 0.00000
## 2391 2581.39535 0.00000
## 2392 2581.39535 0.00000
## 2393 2581.39535 0.00000
## 2394 2581.39535 0.00000
## 2395 2581.39535 0.00000
## 2396 2581.39535 0.00000
## 2397 2581.39535 0.00000
## 2398 2581.39535 0.00000
## 2399 2581.39535 0.00000
## 2400 2581.39535 0.00000
## 2401 1648.25581 2215.11628
## 2402 1648.25581 2215.11628
## 2403 1648.25581 2215.11628
## 2404 1648.25581 2215.11628
## 2405 1648.25581 2215.11628
## 2406 1648.25581 2215.11628
## 2407 1648.25581 2215.11628
## 2408 1648.25581 2215.11628
## 2409 1648.25581 2215.11628
## 2410 1648.25581 2215.11628
## 2411 1648.25581 2215.11628
## 2412 1648.25581 2215.11628
## 2413 1648.25581 2215.11628
## 2414 1648.25581 2215.11628
## 2415 1648.25581 2215.11628
## 2416 1648.25581 2215.11628
## 2417 1648.25581 2215.11628
## 2418 1648.25581 2215.11628
## 2419 1648.25581 2215.11628
## 2420 1648.25581 2215.11628
## 2421 1648.25581 2215.11628
## 2422 1648.25581 2215.11628
## 2423 1648.25581 2215.11628
## 2424 1648.25581 2215.11628
## 2425 366.27907 0.00000
## 2426 366.27907 0.00000
## 2427 366.27907 0.00000
## 2428 366.27907 0.00000
## 2429 366.27907 0.00000
## 2430 366.27907 0.00000
## 2431 366.27907 0.00000
## 2432 366.27907 0.00000
## 2433 366.27907 0.00000
## 2434 366.27907 0.00000
## 2435 366.27907 0.00000
## 2436 366.27907 0.00000
## 2437 366.27907 0.00000
## 2438 366.27907 0.00000
## 2439 366.27907 0.00000
## 2440 366.27907 0.00000
## 2441 366.27907 0.00000
## 2442 366.27907 0.00000
## 2443 366.27907 0.00000
## 2444 366.27907 0.00000
## 2445 366.27907 0.00000
## 2446 366.27907 0.00000
## 2447 366.27907 0.00000
## 2448 366.27907 0.00000
## 2449 596.51163 0.00000
## 2450 596.51163 0.00000
## 2451 596.51163 0.00000
## 2452 596.51163 0.00000
## 2453 596.51163 0.00000
## 2454 596.51163 0.00000
## 2455 596.51163 0.00000
## 2456 596.51163 0.00000
## 2457 596.51163 0.00000
## 2458 596.51163 0.00000
## 2459 596.51163 0.00000
## 2460 596.51163 0.00000
## 2461 596.51163 0.00000
## 2462 596.51163 0.00000
## 2463 596.51163 0.00000
## 2464 596.51163 0.00000
## 2465 596.51163 0.00000
## 2466 596.51163 0.00000
## 2467 596.51163 0.00000
## 2468 596.51163 0.00000
## 2469 596.51163 0.00000
## 2470 596.51163 0.00000
## 2471 596.51163 0.00000
## 2472 596.51163 0.00000
## 2473 0.00000 0.00000
## 2474 0.00000 0.00000
## 2475 0.00000 0.00000
## 2476 0.00000 0.00000
## 2477 0.00000 0.00000
## 2478 0.00000 0.00000
## 2479 0.00000 0.00000
## 2480 0.00000 0.00000
## 2481 0.00000 0.00000
## 2482 0.00000 0.00000
## 2483 0.00000 0.00000
## 2484 0.00000 0.00000
## 2485 0.00000 0.00000
## 2486 0.00000 0.00000
## 2487 0.00000 0.00000
## 2488 0.00000 0.00000
## 2489 0.00000 0.00000
## 2490 0.00000 0.00000
## 2491 0.00000 0.00000
## 2492 0.00000 0.00000
## 2493 0.00000 0.00000
## 2494 0.00000 0.00000
## 2495 0.00000 0.00000
## 2496 0.00000 0.00000
## 2497 883.43023 635.75581
## 2498 883.43023 635.75581
## 2499 883.43023 635.75581
## 2500 883.43023 635.75581
## 2501 883.43023 635.75581
## 2502 883.43023 635.75581
## 2503 883.43023 635.75581
## 2504 883.43023 635.75581
## 2505 883.43023 635.75581
## 2506 883.43023 635.75581
## 2507 883.43023 635.75581
## 2508 883.43023 635.75581
## 2509 883.43023 635.75581
## 2510 883.43023 635.75581
## 2511 883.43023 635.75581
## 2512 883.43023 635.75581
## 2513 883.43023 635.75581
## 2514 883.43023 635.75581
## 2515 883.43023 635.75581
## 2516 883.43023 635.75581
## 2517 883.43023 635.75581
## 2518 883.43023 635.75581
## 2519 883.43023 635.75581
## 2520 883.43023 635.75581
## 2521 863.37209 0.00000
## 2522 863.37209 0.00000
## 2523 863.37209 0.00000
## 2524 863.37209 0.00000
## 2525 863.37209 0.00000
## 2526 863.37209 0.00000
## 2527 863.37209 0.00000
## 2528 863.37209 0.00000
## 2529 863.37209 0.00000
## 2530 863.37209 0.00000
## 2531 863.37209 0.00000
## 2532 863.37209 0.00000
## 2533 863.37209 0.00000
## 2534 863.37209 0.00000
## 2535 863.37209 0.00000
## 2536 863.37209 0.00000
## 2537 863.37209 0.00000
## 2538 863.37209 0.00000
## 2539 863.37209 0.00000
## 2540 863.37209 0.00000
## 2541 863.37209 0.00000
## 2542 863.37209 0.00000
## 2543 863.37209 0.00000
## 2544 863.37209 0.00000
## 2545 1107.55814 235.46512
## 2546 1107.55814 235.46512
## 2547 1107.55814 235.46512
## 2548 1107.55814 235.46512
## 2549 1107.55814 235.46512
## 2550 1107.55814 235.46512
## 2551 1107.55814 235.46512
## 2552 1107.55814 235.46512
## 2553 1107.55814 235.46512
## 2554 1107.55814 235.46512
## 2555 1107.55814 235.46512
## 2556 1107.55814 235.46512
## 2557 1107.55814 235.46512
## 2558 1107.55814 235.46512
## 2559 1107.55814 235.46512
## 2560 1107.55814 235.46512
## 2561 1107.55814 235.46512
## 2562 1107.55814 235.46512
## 2563 1107.55814 235.46512
## 2564 1107.55814 235.46512
## 2565 1107.55814 235.46512
## 2566 1107.55814 235.46512
## 2567 1107.55814 235.46512
## 2568 1107.55814 235.46512
## 2569 1229.65116 0.00000
## 2570 1229.65116 0.00000
## 2571 1229.65116 0.00000
## 2572 1229.65116 0.00000
## 2573 1229.65116 0.00000
## 2574 1229.65116 0.00000
## 2575 1229.65116 0.00000
## 2576 1229.65116 0.00000
## 2577 1229.65116 0.00000
## 2578 1229.65116 0.00000
## 2579 1229.65116 0.00000
## 2580 1229.65116 0.00000
## 2581 1229.65116 0.00000
## 2582 1229.65116 0.00000
## 2583 1229.65116 0.00000
## 2584 1229.65116 0.00000
## 2585 1229.65116 0.00000
## 2586 1229.65116 0.00000
## 2587 1229.65116 0.00000
## 2588 1229.65116 0.00000
## 2589 1229.65116 0.00000
## 2590 1229.65116 0.00000
## 2591 1229.65116 0.00000
## 2592 1229.65116 0.00000
## 2593 1055.23256 1081.39535
## 2594 1055.23256 1081.39535
## 2595 1055.23256 1081.39535
## 2596 1055.23256 1081.39535
## 2597 1055.23256 1081.39535
## 2598 1055.23256 1081.39535
## 2599 1055.23256 1081.39535
## 2600 1055.23256 1081.39535
## 2601 1055.23256 1081.39535
## 2602 1055.23256 1081.39535
## 2603 1055.23256 1081.39535
## 2604 1055.23256 1081.39535
## 2605 1055.23256 1081.39535
## 2606 1055.23256 1081.39535
## 2607 1055.23256 1081.39535
## 2608 1055.23256 1081.39535
## 2609 1055.23256 1081.39535
## 2610 1055.23256 1081.39535
## 2611 1055.23256 1081.39535
## 2612 1055.23256 1081.39535
## 2613 1055.23256 1081.39535
## 2614 1055.23256 1081.39535
## 2615 1055.23256 1081.39535
## 2616 1055.23256 1081.39535
## 2617 1561.04651 0.00000
## 2618 1561.04651 0.00000
## 2619 1561.04651 0.00000
## 2620 1561.04651 0.00000
## 2621 1561.04651 0.00000
## 2622 1561.04651 0.00000
## 2623 1561.04651 0.00000
## 2624 1561.04651 0.00000
## 2625 1561.04651 0.00000
## 2626 1561.04651 0.00000
## 2627 1561.04651 0.00000
## 2628 1561.04651 0.00000
## 2629 1561.04651 0.00000
## 2630 1561.04651 0.00000
## 2631 1561.04651 0.00000
## 2632 1561.04651 0.00000
## 2633 1561.04651 0.00000
## 2634 1561.04651 0.00000
## 2635 1561.04651 0.00000
## 2636 1561.04651 0.00000
## 2637 1561.04651 0.00000
## 2638 1561.04651 0.00000
## 2639 1561.04651 0.00000
## 2640 1561.04651 0.00000
## 2641 1690.98837 0.00000
## 2642 1690.98837 0.00000
## 2643 1690.98837 0.00000
## 2644 1690.98837 0.00000
## 2645 1690.98837 0.00000
## 2646 1690.98837 0.00000
## 2647 1690.98837 0.00000
## 2648 1690.98837 0.00000
## 2649 1690.98837 0.00000
## 2650 1690.98837 0.00000
## 2651 1690.98837 0.00000
## 2652 1690.98837 0.00000
## 2653 1690.98837 0.00000
## 2654 1690.98837 0.00000
## 2655 1690.98837 0.00000
## 2656 1690.98837 0.00000
## 2657 1690.98837 0.00000
## 2658 1690.98837 0.00000
## 2659 1690.98837 0.00000
## 2660 1690.98837 0.00000
## 2661 1690.98837 0.00000
## 2662 1690.98837 0.00000
## 2663 1690.98837 0.00000
## 2664 1690.98837 0.00000
## 2665 0.00000 0.00000
## 2666 0.00000 0.00000
## 2667 0.00000 0.00000
## 2668 0.00000 0.00000
## 2669 0.00000 0.00000
## 2670 0.00000 0.00000
## 2671 0.00000 0.00000
## 2672 0.00000 0.00000
## 2673 0.00000 0.00000
## 2674 0.00000 0.00000
## 2675 0.00000 0.00000
## 2676 0.00000 0.00000
## 2677 0.00000 0.00000
## 2678 0.00000 0.00000
## 2679 0.00000 0.00000
## 2680 0.00000 0.00000
## 2681 0.00000 0.00000
## 2682 0.00000 0.00000
## 2683 0.00000 0.00000
## 2684 0.00000 0.00000
## 2685 0.00000 0.00000
## 2686 0.00000 0.00000
## 2687 0.00000 0.00000
## 2688 0.00000 0.00000
## 2689 883.43023 635.75581
## 2690 883.43023 635.75581
## 2691 883.43023 635.75581
## 2692 883.43023 635.75581
## 2693 883.43023 635.75581
## 2694 883.43023 635.75581
## 2695 883.43023 635.75581
## 2696 883.43023 635.75581
## 2697 883.43023 635.75581
## 2698 883.43023 635.75581
## 2699 883.43023 635.75581
## 2700 883.43023 635.75581
## 2701 883.43023 635.75581
## 2702 883.43023 635.75581
## 2703 883.43023 635.75581
## 2704 883.43023 635.75581
## 2705 883.43023 635.75581
## 2706 883.43023 635.75581
## 2707 883.43023 635.75581
## 2708 883.43023 635.75581
## 2709 883.43023 635.75581
## 2710 883.43023 635.75581
## 2711 883.43023 635.75581
## 2712 883.43023 635.75581
## 2713 3104.65116 0.00000
## 2714 3104.65116 0.00000
## 2715 3104.65116 0.00000
## 2716 3104.65116 0.00000
## 2717 3104.65116 0.00000
## 2718 3104.65116 0.00000
## 2719 3104.65116 0.00000
## 2720 3104.65116 0.00000
## 2721 3104.65116 0.00000
## 2722 3104.65116 0.00000
## 2723 3104.65116 0.00000
## 2724 3104.65116 0.00000
## 2725 3104.65116 0.00000
## 2726 3104.65116 0.00000
## 2727 3104.65116 0.00000
## 2728 3104.65116 0.00000
## 2729 3104.65116 0.00000
## 2730 3104.65116 0.00000
## 2731 3104.65116 0.00000
## 2732 3104.65116 0.00000
## 2733 3104.65116 0.00000
## 2734 3104.65116 0.00000
## 2735 3104.65116 0.00000
## 2736 3104.65116 0.00000
## 2737 0.00000 1055.23256
## 2738 0.00000 1055.23256
## 2739 0.00000 1055.23256
## 2740 0.00000 1055.23256
## 2741 0.00000 1055.23256
## 2742 0.00000 1055.23256
## 2743 0.00000 1055.23256
## 2744 0.00000 1055.23256
## 2745 0.00000 1055.23256
## 2746 0.00000 1055.23256
## 2747 0.00000 1055.23256
## 2748 0.00000 1055.23256
## 2749 0.00000 1055.23256
## 2750 0.00000 1055.23256
## 2751 0.00000 1055.23256
## 2752 0.00000 1055.23256
## 2753 0.00000 1055.23256
## 2754 0.00000 1055.23256
## 2755 0.00000 1055.23256
## 2756 0.00000 1055.23256
## 2757 0.00000 1055.23256
## 2758 0.00000 1055.23256
## 2759 0.00000 1055.23256
## 2760 0.00000 1055.23256
## 2761 2912.79070 3427.32558
## 2762 2912.79070 3427.32558
## 2763 2912.79070 3427.32558
## 2764 2912.79070 3427.32558
## 2765 2912.79070 3427.32558
## 2766 2912.79070 3427.32558
## 2767 2912.79070 3427.32558
## 2768 2912.79070 3427.32558
## 2769 2912.79070 3427.32558
## 2770 2912.79070 3427.32558
## 2771 2912.79070 3427.32558
## 2772 2912.79070 3427.32558
## 2773 2912.79070 3427.32558
## 2774 2912.79070 3427.32558
## 2775 2912.79070 3427.32558
## 2776 2912.79070 3427.32558
## 2777 2912.79070 3427.32558
## 2778 2912.79070 3427.32558
## 2779 2912.79070 3427.32558
## 2780 2912.79070 3427.32558
## 2781 2912.79070 3427.32558
## 2782 2912.79070 3427.32558
## 2783 2912.79070 3427.32558
## 2784 2912.79070 3427.32558
## 2785 409.88372 3706.39535
## 2786 409.88372 3706.39535
## 2787 409.88372 3706.39535
## 2788 409.88372 3706.39535
## 2789 409.88372 3706.39535
## 2790 409.88372 3706.39535
## 2791 409.88372 3706.39535
## 2792 409.88372 3706.39535
## 2793 409.88372 3706.39535
## 2794 409.88372 3706.39535
## 2795 409.88372 3706.39535
## 2796 409.88372 3706.39535
## 2797 409.88372 3706.39535
## 2798 409.88372 3706.39535
## 2799 409.88372 3706.39535
## 2800 409.88372 3706.39535
## 2801 409.88372 3706.39535
## 2802 409.88372 3706.39535
## 2803 409.88372 3706.39535
## 2804 409.88372 3706.39535
## 2805 409.88372 3706.39535
## 2806 409.88372 3706.39535
## 2807 409.88372 3706.39535
## 2808 409.88372 3706.39535
## 2809 2406.97674 1090.11628
## 2810 2406.97674 1090.11628
## 2811 2406.97674 1090.11628
## 2812 2406.97674 1090.11628
## 2813 2406.97674 1090.11628
## 2814 2406.97674 1090.11628
## 2815 2406.97674 1090.11628
## 2816 2406.97674 1090.11628
## 2817 2406.97674 1090.11628
## 2818 2406.97674 1090.11628
## 2819 2406.97674 1090.11628
## 2820 2406.97674 1090.11628
## 2821 2406.97674 1090.11628
## 2822 2406.97674 1090.11628
## 2823 2406.97674 1090.11628
## 2824 2406.97674 1090.11628
## 2825 2406.97674 1090.11628
## 2826 2406.97674 1090.11628
## 2827 2406.97674 1090.11628
## 2828 2406.97674 1090.11628
## 2829 2406.97674 1090.11628
## 2830 2406.97674 1090.11628
## 2831 2406.97674 1090.11628
## 2832 2406.97674 1090.11628
## 2833 2214.24419 1090.11628
## 2834 2214.24419 1090.11628
## 2835 2214.24419 1090.11628
## 2836 2214.24419 1090.11628
## 2837 2214.24419 1090.11628
## 2838 2214.24419 1090.11628
## 2839 2214.24419 1090.11628
## 2840 2214.24419 1090.11628
## 2841 2214.24419 1090.11628
## 2842 2214.24419 1090.11628
## 2843 2214.24419 1090.11628
## 2844 2214.24419 1090.11628
## 2845 2214.24419 1090.11628
## 2846 2214.24419 1090.11628
## 2847 2214.24419 1090.11628
## 2848 2214.24419 1090.11628
## 2849 2214.24419 1090.11628
## 2850 2214.24419 1090.11628
## 2851 2214.24419 1090.11628
## 2852 2214.24419 1090.11628
## 2853 2214.24419 1090.11628
## 2854 2214.24419 1090.11628
## 2855 2214.24419 1090.11628
## 2856 2214.24419 1090.11628
## 2857 1848.83721 0.00000
## 2858 1848.83721 0.00000
## 2859 1848.83721 0.00000
## 2860 1848.83721 0.00000
## 2861 1848.83721 0.00000
## 2862 1848.83721 0.00000
## 2863 1848.83721 0.00000
## 2864 1848.83721 0.00000
## 2865 1848.83721 0.00000
## 2866 1848.83721 0.00000
## 2867 1848.83721 0.00000
## 2868 1848.83721 0.00000
## 2869 1848.83721 0.00000
## 2870 1848.83721 0.00000
## 2871 1848.83721 0.00000
## 2872 1848.83721 0.00000
## 2873 1848.83721 0.00000
## 2874 1848.83721 0.00000
## 2875 1848.83721 0.00000
## 2876 1848.83721 0.00000
## 2877 1848.83721 0.00000
## 2878 1848.83721 0.00000
## 2879 1848.83721 0.00000
## 2880 1848.83721 0.00000
## 2881 883.43023 635.75581
## 2882 883.43023 635.75581
## 2883 883.43023 635.75581
## 2884 883.43023 635.75581
## 2885 883.43023 635.75581
## 2886 883.43023 635.75581
## 2887 883.43023 635.75581
## 2888 883.43023 635.75581
## 2889 883.43023 635.75581
## 2890 883.43023 635.75581
## 2891 883.43023 635.75581
## 2892 883.43023 635.75581
## 2893 883.43023 635.75581
## 2894 883.43023 635.75581
## 2895 883.43023 635.75581
## 2896 883.43023 635.75581
## 2897 883.43023 635.75581
## 2898 883.43023 635.75581
## 2899 883.43023 635.75581
## 2900 883.43023 635.75581
## 2901 883.43023 635.75581
## 2902 883.43023 635.75581
## 2903 883.43023 635.75581
## 2904 883.43023 635.75581
## 2905 2150.58140 1055.23256
## 2906 2150.58140 1055.23256
## 2907 2150.58140 1055.23256
## 2908 2150.58140 1055.23256
## 2909 2150.58140 1055.23256
## 2910 2150.58140 1055.23256
## 2911 2150.58140 1055.23256
## 2912 2150.58140 1055.23256
## 2913 2150.58140 1055.23256
## 2914 2150.58140 1055.23256
## 2915 2150.58140 1055.23256
## 2916 2150.58140 1055.23256
## 2917 2150.58140 1055.23256
## 2918 2150.58140 1055.23256
## 2919 2150.58140 1055.23256
## 2920 2150.58140 1055.23256
## 2921 2150.58140 1055.23256
## 2922 2150.58140 1055.23256
## 2923 2150.58140 1055.23256
## 2924 2150.58140 1055.23256
## 2925 2150.58140 1055.23256
## 2926 2150.58140 1055.23256
## 2927 2150.58140 1055.23256
## 2928 2150.58140 1055.23256
## 2929 1090.11628 1090.11628
## 2930 1090.11628 1090.11628
## 2931 1090.11628 1090.11628
## 2932 1090.11628 1090.11628
## 2933 1090.11628 1090.11628
## 2934 1090.11628 1090.11628
## 2935 1090.11628 1090.11628
## 2936 1090.11628 1090.11628
## 2937 1090.11628 1090.11628
## 2938 1090.11628 1090.11628
## 2939 1090.11628 1090.11628
## 2940 1090.11628 1090.11628
## 2941 1090.11628 1090.11628
## 2942 1090.11628 1090.11628
## 2943 1090.11628 1090.11628
## 2944 1090.11628 1090.11628
## 2945 1090.11628 1090.11628
## 2946 1090.11628 1090.11628
## 2947 1090.11628 1090.11628
## 2948 1090.11628 1090.11628
## 2949 1090.11628 1090.11628
## 2950 1090.11628 1090.11628
## 2951 1090.11628 1090.11628
## 2952 1090.11628 1090.11628
## 2953 3636.62791 2180.23256
## 2954 3636.62791 2180.23256
## 2955 3636.62791 2180.23256
## 2956 3636.62791 2180.23256
## 2957 3636.62791 2180.23256
## 2958 3636.62791 2180.23256
## 2959 3636.62791 2180.23256
## 2960 3636.62791 2180.23256
## 2961 3636.62791 2180.23256
## 2962 3636.62791 2180.23256
## 2963 3636.62791 2180.23256
## 2964 3636.62791 2180.23256
## 2965 3636.62791 2180.23256
## 2966 3636.62791 2180.23256
## 2967 3636.62791 2180.23256
## 2968 3636.62791 2180.23256
## 2969 3636.62791 2180.23256
## 2970 3636.62791 2180.23256
## 2971 3636.62791 2180.23256
## 2972 3636.62791 2180.23256
## 2973 3636.62791 2180.23256
## 2974 3636.62791 2180.23256
## 2975 3636.62791 2180.23256
## 2976 3636.62791 2180.23256
## 2977 1709.30233 549.41860
## 2978 1709.30233 549.41860
## 2979 1709.30233 549.41860
## 2980 1709.30233 549.41860
## 2981 1709.30233 549.41860
## 2982 1709.30233 549.41860
## 2983 1709.30233 549.41860
## 2984 1709.30233 549.41860
## 2985 1709.30233 549.41860
## 2986 1709.30233 549.41860
## 2987 1709.30233 549.41860
## 2988 1709.30233 549.41860
## 2989 1709.30233 549.41860
## 2990 1709.30233 549.41860
## 2991 1709.30233 549.41860
## 2992 1709.30233 549.41860
## 2993 1709.30233 549.41860
## 2994 1709.30233 549.41860
## 2995 1709.30233 549.41860
## 2996 1709.30233 549.41860
## 2997 1709.30233 549.41860
## 2998 1709.30233 549.41860
## 2999 1709.30233 549.41860
## 3000 1709.30233 549.41860
## 3001 594.76744 0.00000
## 3002 594.76744 0.00000
## 3003 594.76744 0.00000
## 3004 594.76744 0.00000
## 3005 594.76744 0.00000
## 3006 594.76744 0.00000
## 3007 594.76744 0.00000
## 3008 594.76744 0.00000
## 3009 594.76744 0.00000
## 3010 594.76744 0.00000
## 3011 594.76744 0.00000
## 3012 594.76744 0.00000
## 3013 594.76744 0.00000
## 3014 594.76744 0.00000
## 3015 594.76744 0.00000
## 3016 594.76744 0.00000
## 3017 594.76744 0.00000
## 3018 594.76744 0.00000
## 3019 594.76744 0.00000
## 3020 594.76744 0.00000
## 3021 594.76744 0.00000
## 3022 594.76744 0.00000
## 3023 594.76744 0.00000
## 3024 594.76744 0.00000
## 3025 1181.68605 0.00000
## 3026 1181.68605 0.00000
## 3027 1181.68605 0.00000
## 3028 1181.68605 0.00000
## 3029 1181.68605 0.00000
## 3030 1181.68605 0.00000
## 3031 1181.68605 0.00000
## 3032 1181.68605 0.00000
## 3033 1181.68605 0.00000
## 3034 1181.68605 0.00000
## 3035 1181.68605 0.00000
## 3036 1181.68605 0.00000
## 3037 1181.68605 0.00000
## 3038 1181.68605 0.00000
## 3039 1181.68605 0.00000
## 3040 1181.68605 0.00000
## 3041 1181.68605 0.00000
## 3042 1181.68605 0.00000
## 3043 1181.68605 0.00000
## 3044 1181.68605 0.00000
## 3045 1181.68605 0.00000
## 3046 1181.68605 0.00000
## 3047 1181.68605 0.00000
## 3048 1181.68605 0.00000
## 3049 1172.96512 126.45349
## 3050 1172.96512 126.45349
## 3051 1172.96512 126.45349
## 3052 1172.96512 126.45349
## 3053 1172.96512 126.45349
## 3054 1172.96512 126.45349
## 3055 1172.96512 126.45349
## 3056 1172.96512 126.45349
## 3057 1172.96512 126.45349
## 3058 1172.96512 126.45349
## 3059 1172.96512 126.45349
## 3060 1172.96512 126.45349
## 3061 1172.96512 126.45349
## 3062 1172.96512 126.45349
## 3063 1172.96512 126.45349
## 3064 1172.96512 126.45349
## 3065 1172.96512 126.45349
## 3066 1172.96512 126.45349
## 3067 1172.96512 126.45349
## 3068 1172.96512 126.45349
## 3069 1172.96512 126.45349
## 3070 1172.96512 126.45349
## 3071 1172.96512 126.45349
## 3072 1172.96512 126.45349
## 3073 883.43023 635.75581
## 3074 883.43023 635.75581
## 3075 883.43023 635.75581
## 3076 883.43023 635.75581
## 3077 883.43023 635.75581
## 3078 883.43023 635.75581
## 3079 883.43023 635.75581
## 3080 883.43023 635.75581
## 3081 883.43023 635.75581
## 3082 883.43023 635.75581
## 3083 883.43023 635.75581
## 3084 883.43023 635.75581
## 3085 883.43023 635.75581
## 3086 883.43023 635.75581
## 3087 883.43023 635.75581
## 3088 883.43023 635.75581
## 3089 883.43023 635.75581
## 3090 883.43023 635.75581
## 3091 883.43023 635.75581
## 3092 883.43023 635.75581
## 3093 883.43023 635.75581
## 3094 883.43023 635.75581
## 3095 883.43023 635.75581
## 3096 883.43023 635.75581
## 3097 6005.23256 1029.06977
## 3098 6005.23256 1029.06977
## 3099 6005.23256 1029.06977
## 3100 6005.23256 1029.06977
## 3101 6005.23256 1029.06977
## 3102 6005.23256 1029.06977
## 3103 6005.23256 1029.06977
## 3104 6005.23256 1029.06977
## 3105 6005.23256 1029.06977
## 3106 6005.23256 1029.06977
## 3107 6005.23256 1029.06977
## 3108 6005.23256 1029.06977
## 3109 6005.23256 1029.06977
## 3110 6005.23256 1029.06977
## 3111 6005.23256 1029.06977
## 3112 6005.23256 1029.06977
## 3113 6005.23256 1029.06977
## 3114 6005.23256 1029.06977
## 3115 6005.23256 1029.06977
## 3116 6005.23256 1029.06977
## 3117 6005.23256 1029.06977
## 3118 6005.23256 1029.06977
## 3119 6005.23256 1029.06977
## 3120 6005.23256 1029.06977
## 3121 0.00000 0.00000
## 3122 0.00000 0.00000
## 3123 0.00000 0.00000
## 3124 0.00000 0.00000
## 3125 0.00000 0.00000
## 3126 0.00000 0.00000
## 3127 0.00000 0.00000
## 3128 0.00000 0.00000
## 3129 0.00000 0.00000
## 3130 0.00000 0.00000
## 3131 0.00000 0.00000
## 3132 0.00000 0.00000
## 3133 0.00000 0.00000
## 3134 0.00000 0.00000
## 3135 0.00000 0.00000
## 3136 0.00000 0.00000
## 3137 0.00000 0.00000
## 3138 0.00000 0.00000
## 3139 0.00000 0.00000
## 3140 0.00000 0.00000
## 3141 0.00000 0.00000
## 3142 0.00000 0.00000
## 3143 0.00000 0.00000
## 3144 0.00000 0.00000
## 3145 0.00000 2188.95349
## 3146 0.00000 2188.95349
## 3147 0.00000 2188.95349
## 3148 0.00000 2188.95349
## 3149 0.00000 2188.95349
## 3150 0.00000 2188.95349
## 3151 0.00000 2188.95349
## 3152 0.00000 2188.95349
## 3153 0.00000 2188.95349
## 3154 0.00000 2188.95349
## 3155 0.00000 2188.95349
## 3156 0.00000 2188.95349
## 3157 0.00000 2188.95349
## 3158 0.00000 2188.95349
## 3159 0.00000 2188.95349
## 3160 0.00000 2188.95349
## 3161 0.00000 2188.95349
## 3162 0.00000 2188.95349
## 3163 0.00000 2188.95349
## 3164 0.00000 2188.95349
## 3165 0.00000 2188.95349
## 3166 0.00000 2188.95349
## 3167 0.00000 2188.95349
## 3168 0.00000 2188.95349
## 3169 0.00000 3654.06977
## 3170 0.00000 3654.06977
## 3171 0.00000 3654.06977
## 3172 0.00000 3654.06977
## 3173 0.00000 3654.06977
## 3174 0.00000 3654.06977
## 3175 0.00000 3654.06977
## 3176 0.00000 3654.06977
## 3177 0.00000 3654.06977
## 3178 0.00000 3654.06977
## 3179 0.00000 3654.06977
## 3180 0.00000 3654.06977
## 3181 0.00000 3654.06977
## 3182 0.00000 3654.06977
## 3183 0.00000 3654.06977
## 3184 0.00000 3654.06977
## 3185 0.00000 3654.06977
## 3186 0.00000 3654.06977
## 3187 0.00000 3654.06977
## 3188 0.00000 3654.06977
## 3189 0.00000 3654.06977
## 3190 0.00000 3654.06977
## 3191 0.00000 3654.06977
## 3192 0.00000 3654.06977
## 3193 1030.81395 287.79070
## 3194 1030.81395 287.79070
## 3195 1030.81395 287.79070
## 3196 1030.81395 287.79070
## 3197 1030.81395 287.79070
## 3198 1030.81395 287.79070
## 3199 1030.81395 287.79070
## 3200 1030.81395 287.79070
## 3201 1030.81395 287.79070
## 3202 1030.81395 287.79070
## 3203 1030.81395 287.79070
## 3204 1030.81395 287.79070
## 3205 1030.81395 287.79070
## 3206 1030.81395 287.79070
## 3207 1030.81395 287.79070
## 3208 1030.81395 287.79070
## 3209 1030.81395 287.79070
## 3210 1030.81395 287.79070
## 3211 1030.81395 287.79070
## 3212 1030.81395 287.79070
## 3213 1030.81395 287.79070
## 3214 1030.81395 287.79070
## 3215 1030.81395 287.79070
## 3216 1030.81395 287.79070
## 3217 1360.46512 0.00000
## 3218 1360.46512 0.00000
## 3219 1360.46512 0.00000
## 3220 1360.46512 0.00000
## 3221 1360.46512 0.00000
## 3222 1360.46512 0.00000
## 3223 1360.46512 0.00000
## 3224 1360.46512 0.00000
## 3225 1360.46512 0.00000
## total_metaecosystem_Spi_te_indiv total_metaecosystem_Tet_indiv connection
## 1 981.9767 2243.895 isolated
## 2 981.9767 2243.895 isolated
## 3 981.9767 2243.895 isolated
## 4 981.9767 2243.895 isolated
## 5 981.9767 2243.895 isolated
## 6 981.9767 2243.895 isolated
## 7 981.9767 2243.895 isolated
## 8 981.9767 2243.895 isolated
## 9 981.9767 2243.895 isolated
## 10 981.9767 2243.895 isolated
## 11 981.9767 2243.895 isolated
## 12 981.9767 2243.895 isolated
## 13 981.9767 2243.895 isolated
## 14 981.9767 2243.895 isolated
## 15 981.9767 2243.895 isolated
## 16 981.9767 2243.895 isolated
## 17 981.9767 2243.895 isolated
## 18 981.9767 2243.895 isolated
## 19 981.9767 2243.895 isolated
## 20 981.9767 2243.895 isolated
## 21 981.9767 2243.895 isolated
## 22 981.9767 2243.895 isolated
## 23 981.9767 2243.895 isolated
## 24 981.9767 2243.895 isolated
## 25 1090.1163 0.000 isolated
## 26 1090.1163 0.000 isolated
## 27 1090.1163 0.000 isolated
## 28 1090.1163 0.000 isolated
## 29 1090.1163 0.000 isolated
## 30 1090.1163 0.000 isolated
## 31 1090.1163 0.000 isolated
## 32 1090.1163 0.000 isolated
## 33 1090.1163 0.000 isolated
## 34 1090.1163 0.000 isolated
## 35 1090.1163 0.000 isolated
## 36 1090.1163 0.000 isolated
## 37 1090.1163 0.000 isolated
## 38 1090.1163 0.000 isolated
## 39 1090.1163 0.000 isolated
## 40 1090.1163 0.000 isolated
## 41 1090.1163 0.000 isolated
## 42 1090.1163 0.000 isolated
## 43 1090.1163 0.000 isolated
## 44 1090.1163 0.000 isolated
## 45 1090.1163 0.000 isolated
## 46 1090.1163 0.000 isolated
## 47 1090.1163 0.000 isolated
## 48 1090.1163 0.000 isolated
## 49 2084.3023 0.000 isolated
## 50 2084.3023 0.000 isolated
## 51 2084.3023 0.000 isolated
## 52 2084.3023 0.000 isolated
## 53 2084.3023 0.000 isolated
## 54 2084.3023 0.000 isolated
## 55 2084.3023 0.000 isolated
## 56 2084.3023 0.000 isolated
## 57 2084.3023 0.000 isolated
## 58 2084.3023 0.000 isolated
## 59 2084.3023 0.000 isolated
## 60 2084.3023 0.000 isolated
## 61 2084.3023 0.000 isolated
## 62 2084.3023 0.000 isolated
## 63 2084.3023 0.000 isolated
## 64 2084.3023 0.000 isolated
## 65 2084.3023 0.000 isolated
## 66 2084.3023 0.000 isolated
## 67 2084.3023 0.000 isolated
## 68 2084.3023 0.000 isolated
## 69 2084.3023 0.000 isolated
## 70 2084.3023 0.000 isolated
## 71 2084.3023 0.000 isolated
## 72 2084.3023 0.000 isolated
## 73 2947.6744 0.000 isolated
## 74 2947.6744 0.000 isolated
## 75 2947.6744 0.000 isolated
## 76 2947.6744 0.000 isolated
## 77 2947.6744 0.000 isolated
## 78 2947.6744 0.000 isolated
## 79 2947.6744 0.000 isolated
## 80 2947.6744 0.000 isolated
## 81 2947.6744 0.000 isolated
## 82 2947.6744 0.000 isolated
## 83 2947.6744 0.000 isolated
## 84 2947.6744 0.000 isolated
## 85 2947.6744 0.000 isolated
## 86 2947.6744 0.000 isolated
## 87 2947.6744 0.000 isolated
## 88 2947.6744 0.000 isolated
## 89 2947.6744 0.000 isolated
## 90 2947.6744 0.000 isolated
## 91 2947.6744 0.000 isolated
## 92 2947.6744 0.000 isolated
## 93 2947.6744 0.000 isolated
## 94 2947.6744 0.000 isolated
## 95 2947.6744 0.000 isolated
## 96 2947.6744 0.000 isolated
## 97 1308.1395 0.000 isolated
## 98 1308.1395 0.000 isolated
## 99 1308.1395 0.000 isolated
## 100 1308.1395 0.000 isolated
## 101 1308.1395 0.000 isolated
## 102 1308.1395 0.000 isolated
## 103 1308.1395 0.000 isolated
## 104 1308.1395 0.000 isolated
## 105 1308.1395 0.000 isolated
## 106 1308.1395 0.000 isolated
## 107 1308.1395 0.000 isolated
## 108 1308.1395 0.000 isolated
## 109 1308.1395 0.000 isolated
## 110 1308.1395 0.000 isolated
## 111 1308.1395 0.000 isolated
## 112 1308.1395 0.000 isolated
## 113 1308.1395 0.000 isolated
## 114 1308.1395 0.000 isolated
## 115 1308.1395 0.000 isolated
## 116 1308.1395 0.000 isolated
## 117 1308.1395 0.000 isolated
## 118 1308.1395 0.000 isolated
## 119 1308.1395 0.000 isolated
## 120 1308.1395 0.000 isolated
## 121 767.4419 0.000 isolated
## 122 767.4419 0.000 isolated
## 123 767.4419 0.000 isolated
## 124 767.4419 0.000 isolated
## 125 767.4419 0.000 isolated
## 126 767.4419 0.000 isolated
## 127 767.4419 0.000 isolated
## 128 767.4419 0.000 isolated
## 129 767.4419 0.000 isolated
## 130 767.4419 0.000 isolated
## 131 767.4419 0.000 isolated
## 132 767.4419 0.000 isolated
## 133 767.4419 0.000 isolated
## 134 767.4419 0.000 isolated
## 135 767.4419 0.000 isolated
## 136 767.4419 0.000 isolated
## 137 767.4419 0.000 isolated
## 138 767.4419 0.000 isolated
## 139 767.4419 0.000 isolated
## 140 767.4419 0.000 isolated
## 141 767.4419 0.000 isolated
## 142 767.4419 0.000 isolated
## 143 767.4419 0.000 isolated
## 144 767.4419 0.000 isolated
## 145 1460.7558 0.000 isolated
## 146 1460.7558 0.000 isolated
## 147 1460.7558 0.000 isolated
## 148 1460.7558 0.000 isolated
## 149 1460.7558 0.000 isolated
## 150 1460.7558 0.000 isolated
## 151 1460.7558 0.000 isolated
## 152 1460.7558 0.000 isolated
## 153 1460.7558 0.000 isolated
## 154 1460.7558 0.000 isolated
## 155 1460.7558 0.000 isolated
## 156 1460.7558 0.000 isolated
## 157 1460.7558 0.000 isolated
## 158 1460.7558 0.000 isolated
## 159 1460.7558 0.000 isolated
## 160 1460.7558 0.000 isolated
## 161 1460.7558 0.000 isolated
## 162 1460.7558 0.000 isolated
## 163 1460.7558 0.000 isolated
## 164 1460.7558 0.000 isolated
## 165 1460.7558 0.000 isolated
## 166 1460.7558 0.000 isolated
## 167 1460.7558 0.000 isolated
## 168 1460.7558 0.000 isolated
## 169 187.5000 0.000 isolated
## 170 187.5000 0.000 isolated
## 171 187.5000 0.000 isolated
## 172 187.5000 0.000 isolated
## 173 187.5000 0.000 isolated
## 174 187.5000 0.000 isolated
## 175 187.5000 0.000 isolated
## 176 187.5000 0.000 isolated
## 177 187.5000 0.000 isolated
## 178 187.5000 0.000 isolated
## 179 187.5000 0.000 isolated
## 180 187.5000 0.000 isolated
## 181 187.5000 0.000 isolated
## 182 187.5000 0.000 isolated
## 183 187.5000 0.000 isolated
## 184 187.5000 0.000 isolated
## 185 187.5000 0.000 isolated
## 186 187.5000 0.000 isolated
## 187 187.5000 0.000 isolated
## 188 187.5000 0.000 isolated
## 189 187.5000 0.000 isolated
## 190 187.5000 0.000 isolated
## 191 187.5000 0.000 isolated
## 192 187.5000 0.000 isolated
## 193 981.9767 2243.895 isolated
## 194 981.9767 2243.895 isolated
## 195 981.9767 2243.895 isolated
## 196 981.9767 2243.895 isolated
## 197 981.9767 2243.895 isolated
## 198 981.9767 2243.895 isolated
## 199 981.9767 2243.895 isolated
## 200 981.9767 2243.895 isolated
## 201 981.9767 2243.895 isolated
## 202 981.9767 2243.895 isolated
## 203 981.9767 2243.895 isolated
## 204 981.9767 2243.895 isolated
## 205 981.9767 2243.895 isolated
## 206 981.9767 2243.895 isolated
## 207 981.9767 2243.895 isolated
## 208 981.9767 2243.895 isolated
## 209 981.9767 2243.895 isolated
## 210 981.9767 2243.895 isolated
## 211 981.9767 2243.895 isolated
## 212 981.9767 2243.895 isolated
## 213 981.9767 2243.895 isolated
## 214 981.9767 2243.895 isolated
## 215 981.9767 2243.895 isolated
## 216 981.9767 2243.895 isolated
## 217 0.0000 0.000 isolated
## 218 0.0000 0.000 isolated
## 219 0.0000 0.000 isolated
## 220 0.0000 0.000 isolated
## 221 0.0000 0.000 isolated
## 222 0.0000 0.000 isolated
## 223 0.0000 0.000 isolated
## 224 0.0000 0.000 isolated
## 225 0.0000 0.000 isolated
## 226 0.0000 0.000 isolated
## 227 0.0000 0.000 isolated
## 228 0.0000 0.000 isolated
## 229 0.0000 0.000 isolated
## 230 0.0000 0.000 isolated
## 231 0.0000 0.000 isolated
## 232 0.0000 0.000 isolated
## 233 0.0000 0.000 isolated
## 234 0.0000 0.000 isolated
## 235 0.0000 0.000 isolated
## 236 0.0000 0.000 isolated
## 237 0.0000 0.000 isolated
## 238 0.0000 0.000 isolated
## 239 0.0000 0.000 isolated
## 240 0.0000 0.000 isolated
## 241 1997.0930 0.000 isolated
## 242 1997.0930 0.000 isolated
## 243 1997.0930 0.000 isolated
## 244 1997.0930 0.000 isolated
## 245 1997.0930 0.000 isolated
## 246 1997.0930 0.000 isolated
## 247 1997.0930 0.000 isolated
## 248 1997.0930 0.000 isolated
## 249 1997.0930 0.000 isolated
## 250 1997.0930 0.000 isolated
## 251 1997.0930 0.000 isolated
## 252 1997.0930 0.000 isolated
## 253 1997.0930 0.000 isolated
## 254 1997.0930 0.000 isolated
## 255 1997.0930 0.000 isolated
## 256 1997.0930 0.000 isolated
## 257 1997.0930 0.000 isolated
## 258 1997.0930 0.000 isolated
## 259 1997.0930 0.000 isolated
## 260 1997.0930 0.000 isolated
## 261 1997.0930 0.000 isolated
## 262 1997.0930 0.000 isolated
## 263 1997.0930 0.000 isolated
## 264 1997.0930 0.000 isolated
## 265 3122.0930 0.000 isolated
## 266 3122.0930 0.000 isolated
## 267 3122.0930 0.000 isolated
## 268 3122.0930 0.000 isolated
## 269 3122.0930 0.000 isolated
## 270 3122.0930 0.000 isolated
## 271 3122.0930 0.000 isolated
## 272 3122.0930 0.000 isolated
## 273 3122.0930 0.000 isolated
## 274 3122.0930 0.000 isolated
## 275 3122.0930 0.000 isolated
## 276 3122.0930 0.000 isolated
## 277 3122.0930 0.000 isolated
## 278 3122.0930 0.000 isolated
## 279 3122.0930 0.000 isolated
## 280 3122.0930 0.000 isolated
## 281 3122.0930 0.000 isolated
## 282 3122.0930 0.000 isolated
## 283 3122.0930 0.000 isolated
## 284 3122.0930 0.000 isolated
## 285 3122.0930 0.000 isolated
## 286 3122.0930 0.000 isolated
## 287 3122.0930 0.000 isolated
## 288 3122.0930 0.000 isolated
## 289 218.0233 0.000 isolated
## 290 218.0233 0.000 isolated
## 291 218.0233 0.000 isolated
## 292 218.0233 0.000 isolated
## 293 218.0233 0.000 isolated
## 294 218.0233 0.000 isolated
## 295 218.0233 0.000 isolated
## 296 218.0233 0.000 isolated
## 297 218.0233 0.000 isolated
## 298 218.0233 0.000 isolated
## 299 218.0233 0.000 isolated
## 300 218.0233 0.000 isolated
## 301 218.0233 0.000 isolated
## 302 218.0233 0.000 isolated
## 303 218.0233 0.000 isolated
## 304 218.0233 0.000 isolated
## 305 218.0233 0.000 isolated
## 306 218.0233 0.000 isolated
## 307 218.0233 0.000 isolated
## 308 218.0233 0.000 isolated
## 309 218.0233 0.000 isolated
## 310 218.0233 0.000 isolated
## 311 218.0233 0.000 isolated
## 312 218.0233 0.000 isolated
## 313 3270.3488 0.000 isolated
## 314 3270.3488 0.000 isolated
## 315 3270.3488 0.000 isolated
## 316 3270.3488 0.000 isolated
## 317 3270.3488 0.000 isolated
## 318 3270.3488 0.000 isolated
## 319 3270.3488 0.000 isolated
## 320 3270.3488 0.000 isolated
## 321 3270.3488 0.000 isolated
## 322 3270.3488 0.000 isolated
## 323 3270.3488 0.000 isolated
## 324 3270.3488 0.000 isolated
## 325 3270.3488 0.000 isolated
## 326 3270.3488 0.000 isolated
## 327 3270.3488 0.000 isolated
## 328 3270.3488 0.000 isolated
## 329 3270.3488 0.000 isolated
## 330 3270.3488 0.000 isolated
## 331 3270.3488 0.000 isolated
## 332 3270.3488 0.000 isolated
## 333 3270.3488 0.000 isolated
## 334 3270.3488 0.000 isolated
## 335 3270.3488 0.000 isolated
## 336 3270.3488 0.000 isolated
## 337 218.0233 0.000 isolated
## 338 218.0233 0.000 isolated
## 339 218.0233 0.000 isolated
## 340 218.0233 0.000 isolated
## 341 218.0233 0.000 isolated
## 342 218.0233 0.000 isolated
## 343 218.0233 0.000 isolated
## 344 218.0233 0.000 isolated
## 345 218.0233 0.000 isolated
## 346 218.0233 0.000 isolated
## 347 218.0233 0.000 isolated
## 348 218.0233 0.000 isolated
## 349 218.0233 0.000 isolated
## 350 218.0233 0.000 isolated
## 351 218.0233 0.000 isolated
## 352 218.0233 0.000 isolated
## 353 218.0233 0.000 isolated
## 354 218.0233 0.000 isolated
## 355 218.0233 0.000 isolated
## 356 218.0233 0.000 isolated
## 357 218.0233 0.000 isolated
## 358 218.0233 0.000 isolated
## 359 218.0233 0.000 isolated
## 360 218.0233 0.000 isolated
## 361 928.7791 0.000 isolated
## 362 928.7791 0.000 isolated
## 363 928.7791 0.000 isolated
## 364 928.7791 0.000 isolated
## 365 928.7791 0.000 isolated
## 366 928.7791 0.000 isolated
## 367 928.7791 0.000 isolated
## 368 928.7791 0.000 isolated
## 369 928.7791 0.000 isolated
## 370 928.7791 0.000 isolated
## 371 928.7791 0.000 isolated
## 372 928.7791 0.000 isolated
## 373 928.7791 0.000 isolated
## 374 928.7791 0.000 isolated
## 375 928.7791 0.000 isolated
## 376 928.7791 0.000 isolated
## 377 928.7791 0.000 isolated
## 378 928.7791 0.000 isolated
## 379 928.7791 0.000 isolated
## 380 928.7791 0.000 isolated
## 381 928.7791 0.000 isolated
## 382 928.7791 0.000 isolated
## 383 928.7791 0.000 isolated
## 384 928.7791 0.000 isolated
## 385 981.9767 2243.895 isolated
## 386 981.9767 2243.895 isolated
## 387 981.9767 2243.895 isolated
## 388 981.9767 2243.895 isolated
## 389 981.9767 2243.895 isolated
## 390 981.9767 2243.895 isolated
## 391 981.9767 2243.895 isolated
## 392 981.9767 2243.895 isolated
## 393 981.9767 2243.895 isolated
## 394 981.9767 2243.895 isolated
## 395 981.9767 2243.895 isolated
## 396 981.9767 2243.895 isolated
## 397 981.9767 2243.895 isolated
## 398 981.9767 2243.895 isolated
## 399 981.9767 2243.895 isolated
## 400 981.9767 2243.895 isolated
## 401 981.9767 2243.895 isolated
## 402 981.9767 2243.895 isolated
## 403 981.9767 2243.895 isolated
## 404 981.9767 2243.895 isolated
## 405 981.9767 2243.895 isolated
## 406 981.9767 2243.895 isolated
## 407 981.9767 2243.895 isolated
## 408 981.9767 2243.895 isolated
## 409 2825.5814 0.000 isolated
## 410 2825.5814 0.000 isolated
## 411 2825.5814 0.000 isolated
## 412 2825.5814 0.000 isolated
## 413 2825.5814 0.000 isolated
## 414 2825.5814 0.000 isolated
## 415 2825.5814 0.000 isolated
## 416 2825.5814 0.000 isolated
## 417 2825.5814 0.000 isolated
## 418 2825.5814 0.000 isolated
## 419 2825.5814 0.000 isolated
## 420 2825.5814 0.000 isolated
## 421 2825.5814 0.000 isolated
## 422 2825.5814 0.000 isolated
## 423 2825.5814 0.000 isolated
## 424 2825.5814 0.000 isolated
## 425 2825.5814 0.000 isolated
## 426 2825.5814 0.000 isolated
## 427 2825.5814 0.000 isolated
## 428 2825.5814 0.000 isolated
## 429 2825.5814 0.000 isolated
## 430 2825.5814 0.000 isolated
## 431 2825.5814 0.000 isolated
## 432 2825.5814 0.000 isolated
## 433 3174.4186 0.000 isolated
## 434 3174.4186 0.000 isolated
## 435 3174.4186 0.000 isolated
## 436 3174.4186 0.000 isolated
## 437 3174.4186 0.000 isolated
## 438 3174.4186 0.000 isolated
## 439 3174.4186 0.000 isolated
## 440 3174.4186 0.000 isolated
## 441 3174.4186 0.000 isolated
## 442 3174.4186 0.000 isolated
## 443 3174.4186 0.000 isolated
## 444 3174.4186 0.000 isolated
## 445 3174.4186 0.000 isolated
## 446 3174.4186 0.000 isolated
## 447 3174.4186 0.000 isolated
## 448 3174.4186 0.000 isolated
## 449 3174.4186 0.000 isolated
## 450 3174.4186 0.000 isolated
## 451 3174.4186 0.000 isolated
## 452 3174.4186 0.000 isolated
## 453 3174.4186 0.000 isolated
## 454 3174.4186 0.000 isolated
## 455 3174.4186 0.000 isolated
## 456 3174.4186 0.000 isolated
## 457 6793.6047 0.000 isolated
## 458 6793.6047 0.000 isolated
## 459 6793.6047 0.000 isolated
## 460 6793.6047 0.000 isolated
## 461 6793.6047 0.000 isolated
## 462 6793.6047 0.000 isolated
## 463 6793.6047 0.000 isolated
## 464 6793.6047 0.000 isolated
## 465 6793.6047 0.000 isolated
## 466 6793.6047 0.000 isolated
## 467 6793.6047 0.000 isolated
## 468 6793.6047 0.000 isolated
## 469 6793.6047 0.000 isolated
## 470 6793.6047 0.000 isolated
## 471 6793.6047 0.000 isolated
## 472 6793.6047 0.000 isolated
## 473 6793.6047 0.000 isolated
## 474 6793.6047 0.000 isolated
## 475 6793.6047 0.000 isolated
## 476 6793.6047 0.000 isolated
## 477 6793.6047 0.000 isolated
## 478 6793.6047 0.000 isolated
## 479 6793.6047 0.000 isolated
## 480 6793.6047 0.000 isolated
## 481 2433.1395 0.000 isolated
## 482 2433.1395 0.000 isolated
## 483 2433.1395 0.000 isolated
## 484 2433.1395 0.000 isolated
## 485 2433.1395 0.000 isolated
## 486 2433.1395 0.000 isolated
## 487 2433.1395 0.000 isolated
## 488 2433.1395 0.000 isolated
## 489 2433.1395 0.000 isolated
## 490 2433.1395 0.000 isolated
## 491 2433.1395 0.000 isolated
## 492 2433.1395 0.000 isolated
## 493 2433.1395 0.000 isolated
## 494 2433.1395 0.000 isolated
## 495 2433.1395 0.000 isolated
## 496 2433.1395 0.000 isolated
## 497 2433.1395 0.000 isolated
## 498 2433.1395 0.000 isolated
## 499 2433.1395 0.000 isolated
## 500 2433.1395 0.000 isolated
## 501 2433.1395 0.000 isolated
## 502 2433.1395 0.000 isolated
## 503 2433.1395 0.000 isolated
## 504 2433.1395 0.000 isolated
## 505 5450.5814 0.000 isolated
## 506 5450.5814 0.000 isolated
## 507 5450.5814 0.000 isolated
## 508 5450.5814 0.000 isolated
## 509 5450.5814 0.000 isolated
## 510 5450.5814 0.000 isolated
## 511 5450.5814 0.000 isolated
## 512 5450.5814 0.000 isolated
## 513 5450.5814 0.000 isolated
## 514 5450.5814 0.000 isolated
## 515 5450.5814 0.000 isolated
## 516 5450.5814 0.000 isolated
## 517 5450.5814 0.000 isolated
## 518 5450.5814 0.000 isolated
## 519 5450.5814 0.000 isolated
## 520 5450.5814 0.000 isolated
## 521 5450.5814 0.000 isolated
## 522 5450.5814 0.000 isolated
## 523 5450.5814 0.000 isolated
## 524 5450.5814 0.000 isolated
## 525 5450.5814 0.000 isolated
## 526 5450.5814 0.000 isolated
## 527 5450.5814 0.000 isolated
## 528 5450.5814 0.000 isolated
## 529 806.6860 0.000 isolated
## 530 806.6860 0.000 isolated
## 531 806.6860 0.000 isolated
## 532 806.6860 0.000 isolated
## 533 806.6860 0.000 isolated
## 534 806.6860 0.000 isolated
## 535 806.6860 0.000 isolated
## 536 806.6860 0.000 isolated
## 537 806.6860 0.000 isolated
## 538 806.6860 0.000 isolated
## 539 806.6860 0.000 isolated
## 540 806.6860 0.000 isolated
## 541 806.6860 0.000 isolated
## 542 806.6860 0.000 isolated
## 543 806.6860 0.000 isolated
## 544 806.6860 0.000 isolated
## 545 806.6860 0.000 isolated
## 546 806.6860 0.000 isolated
## 547 806.6860 0.000 isolated
## 548 806.6860 0.000 isolated
## 549 806.6860 0.000 isolated
## 550 806.6860 0.000 isolated
## 551 806.6860 0.000 isolated
## 552 806.6860 0.000 isolated
## 553 1229.6512 0.000 isolated
## 554 1229.6512 0.000 isolated
## 555 1229.6512 0.000 isolated
## 556 1229.6512 0.000 isolated
## 557 1229.6512 0.000 isolated
## 558 1229.6512 0.000 isolated
## 559 1229.6512 0.000 isolated
## 560 1229.6512 0.000 isolated
## 561 1229.6512 0.000 isolated
## 562 1229.6512 0.000 isolated
## 563 1229.6512 0.000 isolated
## 564 1229.6512 0.000 isolated
## 565 1229.6512 0.000 isolated
## 566 1229.6512 0.000 isolated
## 567 1229.6512 0.000 isolated
## 568 1229.6512 0.000 isolated
## 569 1229.6512 0.000 isolated
## 570 1229.6512 0.000 isolated
## 571 1229.6512 0.000 isolated
## 572 1229.6512 0.000 isolated
## 573 1229.6512 0.000 isolated
## 574 1229.6512 0.000 isolated
## 575 1229.6512 0.000 isolated
## 576 1229.6512 0.000 isolated
## 577 981.9767 2243.895 isolated
## 578 981.9767 2243.895 isolated
## 579 981.9767 2243.895 isolated
## 580 981.9767 2243.895 isolated
## 581 981.9767 2243.895 isolated
## 582 981.9767 2243.895 isolated
## 583 981.9767 2243.895 isolated
## 584 981.9767 2243.895 isolated
## 585 981.9767 2243.895 isolated
## 586 981.9767 2243.895 isolated
## 587 981.9767 2243.895 isolated
## 588 981.9767 2243.895 isolated
## 589 981.9767 2243.895 isolated
## 590 981.9767 2243.895 isolated
## 591 981.9767 2243.895 isolated
## 592 981.9767 2243.895 isolated
## 593 981.9767 2243.895 isolated
## 594 981.9767 2243.895 isolated
## 595 981.9767 2243.895 isolated
## 596 981.9767 2243.895 isolated
## 597 981.9767 2243.895 isolated
## 598 981.9767 2243.895 isolated
## 599 981.9767 2243.895 isolated
## 600 981.9767 2243.895 isolated
## 601 2180.2326 0.000 isolated
## 602 2180.2326 0.000 isolated
## 603 2180.2326 0.000 isolated
## 604 2180.2326 0.000 isolated
## 605 2180.2326 0.000 isolated
## 606 2180.2326 0.000 isolated
## 607 2180.2326 0.000 isolated
## 608 2180.2326 0.000 isolated
## 609 2180.2326 0.000 isolated
## 610 2180.2326 0.000 isolated
## 611 2180.2326 0.000 isolated
## 612 2180.2326 0.000 isolated
## 613 2180.2326 0.000 isolated
## 614 2180.2326 0.000 isolated
## 615 2180.2326 0.000 isolated
## 616 2180.2326 0.000 isolated
## 617 2180.2326 0.000 isolated
## 618 2180.2326 0.000 isolated
## 619 2180.2326 0.000 isolated
## 620 2180.2326 0.000 isolated
## 621 2180.2326 0.000 isolated
## 622 2180.2326 0.000 isolated
## 623 2180.2326 0.000 isolated
## 624 2180.2326 0.000 isolated
## 625 2084.3023 0.000 isolated
## 626 2084.3023 0.000 isolated
## 627 2084.3023 0.000 isolated
## 628 2084.3023 0.000 isolated
## 629 2084.3023 0.000 isolated
## 630 2084.3023 0.000 isolated
## 631 2084.3023 0.000 isolated
## 632 2084.3023 0.000 isolated
## 633 2084.3023 0.000 isolated
## 634 2084.3023 0.000 isolated
## 635 2084.3023 0.000 isolated
## 636 2084.3023 0.000 isolated
## 637 2084.3023 0.000 isolated
## 638 2084.3023 0.000 isolated
## 639 2084.3023 0.000 isolated
## 640 2084.3023 0.000 isolated
## 641 2084.3023 0.000 isolated
## 642 2084.3023 0.000 isolated
## 643 2084.3023 0.000 isolated
## 644 2084.3023 0.000 isolated
## 645 2084.3023 0.000 isolated
## 646 2084.3023 0.000 isolated
## 647 2084.3023 0.000 isolated
## 648 2084.3023 0.000 isolated
## 649 1090.1163 0.000 isolated
## 650 1090.1163 0.000 isolated
## 651 1090.1163 0.000 isolated
## 652 1090.1163 0.000 isolated
## 653 1090.1163 0.000 isolated
## 654 1090.1163 0.000 isolated
## 655 1090.1163 0.000 isolated
## 656 1090.1163 0.000 isolated
## 657 1090.1163 0.000 isolated
## 658 1090.1163 0.000 isolated
## 659 1090.1163 0.000 isolated
## 660 1090.1163 0.000 isolated
## 661 1090.1163 0.000 isolated
## 662 1090.1163 0.000 isolated
## 663 1090.1163 0.000 isolated
## 664 1090.1163 0.000 isolated
## 665 1090.1163 0.000 isolated
## 666 1090.1163 0.000 isolated
## 667 1090.1163 0.000 isolated
## 668 1090.1163 0.000 isolated
## 669 1090.1163 0.000 isolated
## 670 1090.1163 0.000 isolated
## 671 1090.1163 0.000 isolated
## 672 1090.1163 0.000 isolated
## 673 218.0233 0.000 isolated
## 674 218.0233 0.000 isolated
## 675 218.0233 0.000 isolated
## 676 218.0233 0.000 isolated
## 677 218.0233 0.000 isolated
## 678 218.0233 0.000 isolated
## 679 218.0233 0.000 isolated
## 680 218.0233 0.000 isolated
## 681 218.0233 0.000 isolated
## 682 218.0233 0.000 isolated
## 683 218.0233 0.000 isolated
## 684 218.0233 0.000 isolated
## 685 218.0233 0.000 isolated
## 686 218.0233 0.000 isolated
## 687 218.0233 0.000 isolated
## 688 218.0233 0.000 isolated
## 689 218.0233 0.000 isolated
## 690 218.0233 0.000 isolated
## 691 218.0233 0.000 isolated
## 692 218.0233 0.000 isolated
## 693 218.0233 0.000 isolated
## 694 218.0233 0.000 isolated
## 695 218.0233 0.000 isolated
## 696 218.0233 0.000 isolated
## 697 0.0000 0.000 isolated
## 698 0.0000 0.000 isolated
## 699 0.0000 0.000 isolated
## 700 0.0000 0.000 isolated
## 701 0.0000 0.000 isolated
## 702 0.0000 0.000 isolated
## 703 0.0000 0.000 isolated
## 704 0.0000 0.000 isolated
## 705 0.0000 0.000 isolated
## 706 0.0000 0.000 isolated
## 707 0.0000 0.000 isolated
## 708 0.0000 0.000 isolated
## 709 0.0000 0.000 isolated
## 710 0.0000 0.000 isolated
## 711 0.0000 0.000 isolated
## 712 0.0000 0.000 isolated
## 713 0.0000 0.000 isolated
## 714 0.0000 0.000 isolated
## 715 0.0000 0.000 isolated
## 716 0.0000 0.000 isolated
## 717 0.0000 0.000 isolated
## 718 0.0000 0.000 isolated
## 719 0.0000 0.000 isolated
## 720 0.0000 0.000 isolated
## 721 109.0116 0.000 isolated
## 722 109.0116 0.000 isolated
## 723 109.0116 0.000 isolated
## 724 109.0116 0.000 isolated
## 725 109.0116 0.000 isolated
## 726 109.0116 0.000 isolated
## 727 109.0116 0.000 isolated
## 728 109.0116 0.000 isolated
## 729 109.0116 0.000 isolated
## 730 109.0116 0.000 isolated
## 731 109.0116 0.000 isolated
## 732 109.0116 0.000 isolated
## 733 109.0116 0.000 isolated
## 734 109.0116 0.000 isolated
## 735 109.0116 0.000 isolated
## 736 109.0116 0.000 isolated
## 737 109.0116 0.000 isolated
## 738 109.0116 0.000 isolated
## 739 109.0116 0.000 isolated
## 740 109.0116 0.000 isolated
## 741 109.0116 0.000 isolated
## 742 109.0116 0.000 isolated
## 743 109.0116 0.000 isolated
## 744 109.0116 0.000 isolated
## 745 0.0000 0.000 isolated
## 746 0.0000 0.000 isolated
## 747 0.0000 0.000 isolated
## 748 0.0000 0.000 isolated
## 749 0.0000 0.000 isolated
## 750 0.0000 0.000 isolated
## 751 0.0000 0.000 isolated
## 752 0.0000 0.000 isolated
## 753 0.0000 0.000 isolated
## 754 0.0000 0.000 isolated
## 755 0.0000 0.000 isolated
## 756 0.0000 0.000 isolated
## 757 0.0000 0.000 isolated
## 758 0.0000 0.000 isolated
## 759 0.0000 0.000 isolated
## 760 0.0000 0.000 isolated
## 761 0.0000 0.000 isolated
## 762 0.0000 0.000 isolated
## 763 0.0000 0.000 isolated
## 764 0.0000 0.000 isolated
## 765 0.0000 0.000 isolated
## 766 0.0000 0.000 isolated
## 767 0.0000 0.000 isolated
## 768 0.0000 0.000 isolated
## 769 981.9767 2243.895 isolated
## 770 981.9767 2243.895 isolated
## 771 981.9767 2243.895 isolated
## 772 981.9767 2243.895 isolated
## 773 981.9767 2243.895 isolated
## 774 981.9767 2243.895 isolated
## 775 981.9767 2243.895 isolated
## 776 981.9767 2243.895 isolated
## 777 981.9767 2243.895 isolated
## 778 981.9767 2243.895 isolated
## 779 981.9767 2243.895 isolated
## 780 981.9767 2243.895 isolated
## 781 981.9767 2243.895 isolated
## 782 981.9767 2243.895 isolated
## 783 981.9767 2243.895 isolated
## 784 981.9767 2243.895 isolated
## 785 981.9767 2243.895 isolated
## 786 981.9767 2243.895 isolated
## 787 981.9767 2243.895 isolated
## 788 981.9767 2243.895 isolated
## 789 981.9767 2243.895 isolated
## 790 981.9767 2243.895 isolated
## 791 981.9767 2243.895 isolated
## 792 981.9767 2243.895 isolated
## 793 1465.1163 0.000 isolated
## 794 1465.1163 0.000 isolated
## 795 1465.1163 0.000 isolated
## 796 1465.1163 0.000 isolated
## 797 1465.1163 0.000 isolated
## 798 1465.1163 0.000 isolated
## 799 1465.1163 0.000 isolated
## 800 1465.1163 0.000 isolated
## 801 1465.1163 0.000 isolated
## 802 1465.1163 0.000 isolated
## 803 1465.1163 0.000 isolated
## 804 1465.1163 0.000 isolated
## 805 1465.1163 0.000 isolated
## 806 1465.1163 0.000 isolated
## 807 1465.1163 0.000 isolated
## 808 1465.1163 0.000 isolated
## 809 1465.1163 0.000 isolated
## 810 1465.1163 0.000 isolated
## 811 1465.1163 0.000 isolated
## 812 1465.1163 0.000 isolated
## 813 1465.1163 0.000 isolated
## 814 1465.1163 0.000 isolated
## 815 1465.1163 0.000 isolated
## 816 1465.1163 0.000 isolated
## 817 2389.5349 0.000 isolated
## 818 2389.5349 0.000 isolated
## 819 2389.5349 0.000 isolated
## 820 2389.5349 0.000 isolated
## 821 2389.5349 0.000 isolated
## 822 2389.5349 0.000 isolated
## 823 2389.5349 0.000 isolated
## 824 2389.5349 0.000 isolated
## 825 2389.5349 0.000 isolated
## 826 2389.5349 0.000 isolated
## 827 2389.5349 0.000 isolated
## 828 2389.5349 0.000 isolated
## 829 2389.5349 0.000 isolated
## 830 2389.5349 0.000 isolated
## 831 2389.5349 0.000 isolated
## 832 2389.5349 0.000 isolated
## 833 2389.5349 0.000 isolated
## 834 2389.5349 0.000 isolated
## 835 2389.5349 0.000 isolated
## 836 2389.5349 0.000 isolated
## 837 2389.5349 0.000 isolated
## 838 2389.5349 0.000 isolated
## 839 2389.5349 0.000 isolated
## 840 2389.5349 0.000 isolated
## 841 2136.6279 0.000 isolated
## 842 2136.6279 0.000 isolated
## 843 2136.6279 0.000 isolated
## 844 2136.6279 0.000 isolated
## 845 2136.6279 0.000 isolated
## 846 2136.6279 0.000 isolated
## 847 2136.6279 0.000 isolated
## 848 2136.6279 0.000 isolated
## 849 2136.6279 0.000 isolated
## 850 2136.6279 0.000 isolated
## 851 2136.6279 0.000 isolated
## 852 2136.6279 0.000 isolated
## 853 2136.6279 0.000 isolated
## 854 2136.6279 0.000 isolated
## 855 2136.6279 0.000 isolated
## 856 2136.6279 0.000 isolated
## 857 2136.6279 0.000 isolated
## 858 2136.6279 0.000 isolated
## 859 2136.6279 0.000 isolated
## 860 2136.6279 0.000 isolated
## 861 2136.6279 0.000 isolated
## 862 2136.6279 0.000 isolated
## 863 2136.6279 0.000 isolated
## 864 2136.6279 0.000 isolated
## 865 1308.1395 0.000 isolated
## 866 1308.1395 0.000 isolated
## 867 1308.1395 0.000 isolated
## 868 1308.1395 0.000 isolated
## 869 1308.1395 0.000 isolated
## 870 1308.1395 0.000 isolated
## 871 1308.1395 0.000 isolated
## 872 1308.1395 0.000 isolated
## 873 1308.1395 0.000 isolated
## 874 1308.1395 0.000 isolated
## 875 1308.1395 0.000 isolated
## 876 1308.1395 0.000 isolated
## 877 1308.1395 0.000 isolated
## 878 1308.1395 0.000 isolated
## 879 1308.1395 0.000 isolated
## 880 1308.1395 0.000 isolated
## 881 1308.1395 0.000 isolated
## 882 1308.1395 0.000 isolated
## 883 1308.1395 0.000 isolated
## 884 1308.1395 0.000 isolated
## 885 1308.1395 0.000 isolated
## 886 1308.1395 0.000 isolated
## 887 1308.1395 0.000 isolated
## 888 1308.1395 0.000 isolated
## 889 1090.1163 0.000 isolated
## 890 1090.1163 0.000 isolated
## 891 1090.1163 0.000 isolated
## 892 1090.1163 0.000 isolated
## 893 1090.1163 0.000 isolated
## 894 1090.1163 0.000 isolated
## 895 1090.1163 0.000 isolated
## 896 1090.1163 0.000 isolated
## 897 1090.1163 0.000 isolated
## 898 1090.1163 0.000 isolated
## 899 1090.1163 0.000 isolated
## 900 1090.1163 0.000 isolated
## 901 1090.1163 0.000 isolated
## 902 1090.1163 0.000 isolated
## 903 1090.1163 0.000 isolated
## 904 1090.1163 0.000 isolated
## 905 1090.1163 0.000 isolated
## 906 1090.1163 0.000 isolated
## 907 1090.1163 0.000 isolated
## 908 1090.1163 0.000 isolated
## 909 1090.1163 0.000 isolated
## 910 1090.1163 0.000 isolated
## 911 1090.1163 0.000 isolated
## 912 1090.1163 0.000 isolated
## 913 3235.4651 0.000 isolated
## 914 3235.4651 0.000 isolated
## 915 3235.4651 0.000 isolated
## 916 3235.4651 0.000 isolated
## 917 3235.4651 0.000 isolated
## 918 3235.4651 0.000 isolated
## 919 3235.4651 0.000 isolated
## 920 3235.4651 0.000 isolated
## 921 3235.4651 0.000 isolated
## 922 3235.4651 0.000 isolated
## 923 3235.4651 0.000 isolated
## 924 3235.4651 0.000 isolated
## 925 3235.4651 0.000 isolated
## 926 3235.4651 0.000 isolated
## 927 3235.4651 0.000 isolated
## 928 3235.4651 0.000 isolated
## 929 3235.4651 0.000 isolated
## 930 3235.4651 0.000 isolated
## 931 3235.4651 0.000 isolated
## 932 3235.4651 0.000 isolated
## 933 3235.4651 0.000 isolated
## 934 3235.4651 0.000 isolated
## 935 3235.4651 0.000 isolated
## 936 3235.4651 0.000 isolated
## 937 1077.0349 0.000 isolated
## 938 1077.0349 0.000 isolated
## 939 1077.0349 0.000 isolated
## 940 1077.0349 0.000 isolated
## 941 1077.0349 0.000 isolated
## 942 1077.0349 0.000 isolated
## 943 1077.0349 0.000 isolated
## 944 1077.0349 0.000 isolated
## 945 1077.0349 0.000 isolated
## 946 1077.0349 0.000 isolated
## 947 1077.0349 0.000 isolated
## 948 1077.0349 0.000 isolated
## 949 1077.0349 0.000 isolated
## 950 1077.0349 0.000 isolated
## 951 1077.0349 0.000 isolated
## 952 1077.0349 0.000 isolated
## 953 1077.0349 0.000 isolated
## 954 1077.0349 0.000 isolated
## 955 1077.0349 0.000 isolated
## 956 1077.0349 0.000 isolated
## 957 1077.0349 0.000 isolated
## 958 1077.0349 0.000 isolated
## 959 1077.0349 0.000 isolated
## 960 1077.0349 0.000 isolated
## 961 981.9767 2243.895 isolated
## 962 981.9767 2243.895 isolated
## 963 981.9767 2243.895 isolated
## 964 981.9767 2243.895 isolated
## 965 981.9767 2243.895 isolated
## 966 981.9767 2243.895 isolated
## 967 981.9767 2243.895 isolated
## 968 981.9767 2243.895 isolated
## 969 981.9767 2243.895 isolated
## 970 981.9767 2243.895 isolated
## 971 981.9767 2243.895 isolated
## 972 981.9767 2243.895 isolated
## 973 981.9767 2243.895 isolated
## 974 981.9767 2243.895 isolated
## 975 981.9767 2243.895 isolated
## 976 981.9767 2243.895 isolated
## 977 981.9767 2243.895 isolated
## 978 981.9767 2243.895 isolated
## 979 981.9767 2243.895 isolated
## 980 981.9767 2243.895 isolated
## 981 981.9767 2243.895 isolated
## 982 981.9767 2243.895 isolated
## 983 981.9767 2243.895 isolated
## 984 981.9767 2243.895 isolated
## 985 1247.0930 0.000 isolated
## 986 1247.0930 0.000 isolated
## 987 1247.0930 0.000 isolated
## 988 1247.0930 0.000 isolated
## 989 1247.0930 0.000 isolated
## 990 1247.0930 0.000 isolated
## 991 1247.0930 0.000 isolated
## 992 1247.0930 0.000 isolated
## 993 1247.0930 0.000 isolated
## 994 1247.0930 0.000 isolated
## 995 1247.0930 0.000 isolated
## 996 1247.0930 0.000 isolated
## 997 1247.0930 0.000 isolated
## 998 1247.0930 0.000 isolated
## 999 1247.0930 0.000 isolated
## 1000 1247.0930 0.000 isolated
## 1001 1247.0930 0.000 isolated
## 1002 1247.0930 0.000 isolated
## 1003 1247.0930 0.000 isolated
## 1004 1247.0930 0.000 isolated
## 1005 1247.0930 0.000 isolated
## 1006 1247.0930 0.000 isolated
## 1007 1247.0930 0.000 isolated
## 1008 1247.0930 0.000 isolated
## 1009 1308.1395 0.000 isolated
## 1010 1308.1395 0.000 isolated
## 1011 1308.1395 0.000 isolated
## 1012 1308.1395 0.000 isolated
## 1013 1308.1395 0.000 isolated
## 1014 1308.1395 0.000 isolated
## 1015 1308.1395 0.000 isolated
## 1016 1308.1395 0.000 isolated
## 1017 1308.1395 0.000 isolated
## 1018 1308.1395 0.000 isolated
## 1019 1308.1395 0.000 isolated
## 1020 1308.1395 0.000 isolated
## 1021 1308.1395 0.000 isolated
## 1022 1308.1395 0.000 isolated
## 1023 1308.1395 0.000 isolated
## 1024 1308.1395 0.000 isolated
## 1025 1308.1395 0.000 isolated
## 1026 1308.1395 0.000 isolated
## 1027 1308.1395 0.000 isolated
## 1028 1308.1395 0.000 isolated
## 1029 1308.1395 0.000 isolated
## 1030 1308.1395 0.000 isolated
## 1031 1308.1395 0.000 isolated
## 1032 1308.1395 0.000 isolated
## 1033 2947.6744 0.000 isolated
## 1034 2947.6744 0.000 isolated
## 1035 2947.6744 0.000 isolated
## 1036 2947.6744 0.000 isolated
## 1037 2947.6744 0.000 isolated
## 1038 2947.6744 0.000 isolated
## 1039 2947.6744 0.000 isolated
## 1040 2947.6744 0.000 isolated
## 1041 2947.6744 0.000 isolated
## 1042 2947.6744 0.000 isolated
## 1043 2947.6744 0.000 isolated
## 1044 2947.6744 0.000 isolated
## 1045 2947.6744 0.000 isolated
## 1046 2947.6744 0.000 isolated
## 1047 2947.6744 0.000 isolated
## 1048 2947.6744 0.000 isolated
## 1049 2947.6744 0.000 isolated
## 1050 2947.6744 0.000 isolated
## 1051 2947.6744 0.000 isolated
## 1052 2947.6744 0.000 isolated
## 1053 2947.6744 0.000 isolated
## 1054 2947.6744 0.000 isolated
## 1055 2947.6744 0.000 isolated
## 1056 2947.6744 0.000 isolated
## 1057 1090.1163 0.000 isolated
## 1058 1090.1163 0.000 isolated
## 1059 1090.1163 0.000 isolated
## 1060 1090.1163 0.000 isolated
## 1061 1090.1163 0.000 isolated
## 1062 1090.1163 0.000 isolated
## 1063 1090.1163 0.000 isolated
## 1064 1090.1163 0.000 isolated
## 1065 1090.1163 0.000 isolated
## 1066 1090.1163 0.000 isolated
## 1067 1090.1163 0.000 isolated
## 1068 1090.1163 0.000 isolated
## 1069 1090.1163 0.000 isolated
## 1070 1090.1163 0.000 isolated
## 1071 1090.1163 0.000 isolated
## 1072 1090.1163 0.000 isolated
## 1073 1090.1163 0.000 isolated
## 1074 1090.1163 0.000 isolated
## 1075 1090.1163 0.000 isolated
## 1076 1090.1163 0.000 isolated
## 1077 1090.1163 0.000 isolated
## 1078 1090.1163 0.000 isolated
## 1079 1090.1163 0.000 isolated
## 1080 1090.1163 0.000 isolated
## 1081 767.4419 0.000 isolated
## 1082 767.4419 0.000 isolated
## 1083 767.4419 0.000 isolated
## 1084 767.4419 0.000 isolated
## 1085 767.4419 0.000 isolated
## 1086 767.4419 0.000 isolated
## 1087 767.4419 0.000 isolated
## 1088 767.4419 0.000 isolated
## 1089 767.4419 0.000 isolated
## 1090 767.4419 0.000 isolated
## 1091 767.4419 0.000 isolated
## 1092 767.4419 0.000 isolated
## 1093 767.4419 0.000 isolated
## 1094 767.4419 0.000 isolated
## 1095 767.4419 0.000 isolated
## 1096 767.4419 0.000 isolated
## 1097 767.4419 0.000 isolated
## 1098 767.4419 0.000 isolated
## 1099 767.4419 0.000 isolated
## 1100 767.4419 0.000 isolated
## 1101 767.4419 0.000 isolated
## 1102 767.4419 0.000 isolated
## 1103 767.4419 0.000 isolated
## 1104 767.4419 0.000 isolated
## 1105 1351.7442 0.000 isolated
## 1106 1351.7442 0.000 isolated
## 1107 1351.7442 0.000 isolated
## 1108 1351.7442 0.000 isolated
## 1109 1351.7442 0.000 isolated
## 1110 1351.7442 0.000 isolated
## 1111 1351.7442 0.000 isolated
## 1112 1351.7442 0.000 isolated
## 1113 1351.7442 0.000 isolated
## 1114 1351.7442 0.000 isolated
## 1115 1351.7442 0.000 isolated
## 1116 1351.7442 0.000 isolated
## 1117 1351.7442 0.000 isolated
## 1118 1351.7442 0.000 isolated
## 1119 1351.7442 0.000 isolated
## 1120 1351.7442 0.000 isolated
## 1121 1351.7442 0.000 isolated
## 1122 1351.7442 0.000 isolated
## 1123 1351.7442 0.000 isolated
## 1124 1351.7442 0.000 isolated
## 1125 1351.7442 0.000 isolated
## 1126 1351.7442 0.000 isolated
## 1127 1351.7442 0.000 isolated
## 1128 1351.7442 0.000 isolated
## 1129 187.5000 0.000 isolated
## 1130 187.5000 0.000 isolated
## 1131 187.5000 0.000 isolated
## 1132 187.5000 0.000 isolated
## 1133 187.5000 0.000 isolated
## 1134 187.5000 0.000 isolated
## 1135 187.5000 0.000 isolated
## 1136 187.5000 0.000 isolated
## 1137 187.5000 0.000 isolated
## 1138 187.5000 0.000 isolated
## 1139 187.5000 0.000 isolated
## 1140 187.5000 0.000 isolated
## 1141 187.5000 0.000 isolated
## 1142 187.5000 0.000 isolated
## 1143 187.5000 0.000 isolated
## 1144 187.5000 0.000 isolated
## 1145 187.5000 0.000 isolated
## 1146 187.5000 0.000 isolated
## 1147 187.5000 0.000 isolated
## 1148 187.5000 0.000 isolated
## 1149 187.5000 0.000 isolated
## 1150 187.5000 0.000 isolated
## 1151 187.5000 0.000 isolated
## 1152 187.5000 0.000 isolated
## 1153 981.9767 2243.895 isolated
## 1154 981.9767 2243.895 isolated
## 1155 981.9767 2243.895 isolated
## 1156 981.9767 2243.895 isolated
## 1157 981.9767 2243.895 isolated
## 1158 981.9767 2243.895 isolated
## 1159 981.9767 2243.895 isolated
## 1160 981.9767 2243.895 isolated
## 1161 981.9767 2243.895 isolated
## 1162 981.9767 2243.895 isolated
## 1163 981.9767 2243.895 isolated
## 1164 981.9767 2243.895 isolated
## 1165 981.9767 2243.895 isolated
## 1166 981.9767 2243.895 isolated
## 1167 981.9767 2243.895 isolated
## 1168 981.9767 2243.895 isolated
## 1169 981.9767 2243.895 isolated
## 1170 981.9767 2243.895 isolated
## 1171 981.9767 2243.895 isolated
## 1172 981.9767 2243.895 isolated
## 1173 981.9767 2243.895 isolated
## 1174 981.9767 2243.895 isolated
## 1175 981.9767 2243.895 isolated
## 1176 981.9767 2243.895 isolated
## 1177 156.9767 0.000 isolated
## 1178 156.9767 0.000 isolated
## 1179 156.9767 0.000 isolated
## 1180 156.9767 0.000 isolated
## 1181 156.9767 0.000 isolated
## 1182 156.9767 0.000 isolated
## 1183 156.9767 0.000 isolated
## 1184 156.9767 0.000 isolated
## 1185 156.9767 0.000 isolated
## 1186 156.9767 0.000 isolated
## 1187 156.9767 0.000 isolated
## 1188 156.9767 0.000 isolated
## 1189 156.9767 0.000 isolated
## 1190 156.9767 0.000 isolated
## 1191 156.9767 0.000 isolated
## 1192 156.9767 0.000 isolated
## 1193 156.9767 0.000 isolated
## 1194 156.9767 0.000 isolated
## 1195 156.9767 0.000 isolated
## 1196 156.9767 0.000 isolated
## 1197 156.9767 0.000 isolated
## 1198 156.9767 0.000 isolated
## 1199 156.9767 0.000 isolated
## 1200 156.9767 0.000 isolated
## 1201 1220.9302 0.000 isolated
## 1202 1220.9302 0.000 isolated
## 1203 1220.9302 0.000 isolated
## 1204 1220.9302 0.000 isolated
## 1205 1220.9302 0.000 isolated
## 1206 1220.9302 0.000 isolated
## 1207 1220.9302 0.000 isolated
## 1208 1220.9302 0.000 isolated
## 1209 1220.9302 0.000 isolated
## 1210 1220.9302 0.000 isolated
## 1211 1220.9302 0.000 isolated
## 1212 1220.9302 0.000 isolated
## 1213 1220.9302 0.000 isolated
## 1214 1220.9302 0.000 isolated
## 1215 1220.9302 0.000 isolated
## 1216 1220.9302 0.000 isolated
## 1217 1220.9302 0.000 isolated
## 1218 1220.9302 0.000 isolated
## 1219 1220.9302 0.000 isolated
## 1220 1220.9302 0.000 isolated
## 1221 1220.9302 0.000 isolated
## 1222 1220.9302 0.000 isolated
## 1223 1220.9302 0.000 isolated
## 1224 1220.9302 0.000 isolated
## 1225 3122.0930 0.000 isolated
## 1226 3122.0930 0.000 isolated
## 1227 3122.0930 0.000 isolated
## 1228 3122.0930 0.000 isolated
## 1229 3122.0930 0.000 isolated
## 1230 3122.0930 0.000 isolated
## 1231 3122.0930 0.000 isolated
## 1232 3122.0930 0.000 isolated
## 1233 3122.0930 0.000 isolated
## 1234 3122.0930 0.000 isolated
## 1235 3122.0930 0.000 isolated
## 1236 3122.0930 0.000 isolated
## 1237 3122.0930 0.000 isolated
## 1238 3122.0930 0.000 isolated
## 1239 3122.0930 0.000 isolated
## 1240 3122.0930 0.000 isolated
## 1241 3122.0930 0.000 isolated
## 1242 3122.0930 0.000 isolated
## 1243 3122.0930 0.000 isolated
## 1244 3122.0930 0.000 isolated
## 1245 3122.0930 0.000 isolated
## 1246 3122.0930 0.000 isolated
## 1247 3122.0930 0.000 isolated
## 1248 3122.0930 0.000 isolated
## 1249 0.0000 0.000 isolated
## 1250 0.0000 0.000 isolated
## 1251 0.0000 0.000 isolated
## 1252 0.0000 0.000 isolated
## 1253 0.0000 0.000 isolated
## 1254 0.0000 0.000 isolated
## 1255 0.0000 0.000 isolated
## 1256 0.0000 0.000 isolated
## 1257 0.0000 0.000 isolated
## 1258 0.0000 0.000 isolated
## 1259 0.0000 0.000 isolated
## 1260 0.0000 0.000 isolated
## 1261 0.0000 0.000 isolated
## 1262 0.0000 0.000 isolated
## 1263 0.0000 0.000 isolated
## 1264 0.0000 0.000 isolated
## 1265 0.0000 0.000 isolated
## 1266 0.0000 0.000 isolated
## 1267 0.0000 0.000 isolated
## 1268 0.0000 0.000 isolated
## 1269 0.0000 0.000 isolated
## 1270 0.0000 0.000 isolated
## 1271 0.0000 0.000 isolated
## 1272 0.0000 0.000 isolated
## 1273 3270.3488 0.000 isolated
## 1274 3270.3488 0.000 isolated
## 1275 3270.3488 0.000 isolated
## 1276 3270.3488 0.000 isolated
## 1277 3270.3488 0.000 isolated
## 1278 3270.3488 0.000 isolated
## 1279 3270.3488 0.000 isolated
## 1280 3270.3488 0.000 isolated
## 1281 3270.3488 0.000 isolated
## 1282 3270.3488 0.000 isolated
## 1283 3270.3488 0.000 isolated
## 1284 3270.3488 0.000 isolated
## 1285 3270.3488 0.000 isolated
## 1286 3270.3488 0.000 isolated
## 1287 3270.3488 0.000 isolated
## 1288 3270.3488 0.000 isolated
## 1289 3270.3488 0.000 isolated
## 1290 3270.3488 0.000 isolated
## 1291 3270.3488 0.000 isolated
## 1292 3270.3488 0.000 isolated
## 1293 3270.3488 0.000 isolated
## 1294 3270.3488 0.000 isolated
## 1295 3270.3488 0.000 isolated
## 1296 3270.3488 0.000 isolated
## 1297 109.0116 0.000 isolated
## 1298 109.0116 0.000 isolated
## 1299 109.0116 0.000 isolated
## 1300 109.0116 0.000 isolated
## 1301 109.0116 0.000 isolated
## 1302 109.0116 0.000 isolated
## 1303 109.0116 0.000 isolated
## 1304 109.0116 0.000 isolated
## 1305 109.0116 0.000 isolated
## 1306 109.0116 0.000 isolated
## 1307 109.0116 0.000 isolated
## 1308 109.0116 0.000 isolated
## 1309 109.0116 0.000 isolated
## 1310 109.0116 0.000 isolated
## 1311 109.0116 0.000 isolated
## 1312 109.0116 0.000 isolated
## 1313 109.0116 0.000 isolated
## 1314 109.0116 0.000 isolated
## 1315 109.0116 0.000 isolated
## 1316 109.0116 0.000 isolated
## 1317 109.0116 0.000 isolated
## 1318 109.0116 0.000 isolated
## 1319 109.0116 0.000 isolated
## 1320 109.0116 0.000 isolated
## 1321 928.7791 0.000 isolated
## 1322 928.7791 0.000 isolated
## 1323 928.7791 0.000 isolated
## 1324 928.7791 0.000 isolated
## 1325 928.7791 0.000 isolated
## 1326 928.7791 0.000 isolated
## 1327 928.7791 0.000 isolated
## 1328 928.7791 0.000 isolated
## 1329 928.7791 0.000 isolated
## 1330 928.7791 0.000 isolated
## 1331 928.7791 0.000 isolated
## 1332 928.7791 0.000 isolated
## 1333 928.7791 0.000 isolated
## 1334 928.7791 0.000 isolated
## 1335 928.7791 0.000 isolated
## 1336 928.7791 0.000 isolated
## 1337 928.7791 0.000 isolated
## 1338 928.7791 0.000 isolated
## 1339 928.7791 0.000 isolated
## 1340 928.7791 0.000 isolated
## 1341 928.7791 0.000 isolated
## 1342 928.7791 0.000 isolated
## 1343 928.7791 0.000 isolated
## 1344 928.7791 0.000 isolated
## 1345 981.9767 2243.895 isolated
## 1346 981.9767 2243.895 isolated
## 1347 981.9767 2243.895 isolated
## 1348 981.9767 2243.895 isolated
## 1349 981.9767 2243.895 isolated
## 1350 981.9767 2243.895 isolated
## 1351 981.9767 2243.895 isolated
## 1352 981.9767 2243.895 isolated
## 1353 981.9767 2243.895 isolated
## 1354 981.9767 2243.895 isolated
## 1355 981.9767 2243.895 isolated
## 1356 981.9767 2243.895 isolated
## 1357 981.9767 2243.895 isolated
## 1358 981.9767 2243.895 isolated
## 1359 981.9767 2243.895 isolated
## 1360 981.9767 2243.895 isolated
## 1361 981.9767 2243.895 isolated
## 1362 981.9767 2243.895 isolated
## 1363 981.9767 2243.895 isolated
## 1364 981.9767 2243.895 isolated
## 1365 981.9767 2243.895 isolated
## 1366 981.9767 2243.895 isolated
## 1367 981.9767 2243.895 isolated
## 1368 981.9767 2243.895 isolated
## 1369 2982.5581 0.000 isolated
## 1370 2982.5581 0.000 isolated
## 1371 2982.5581 0.000 isolated
## 1372 2982.5581 0.000 isolated
## 1373 2982.5581 0.000 isolated
## 1374 2982.5581 0.000 isolated
## 1375 2982.5581 0.000 isolated
## 1376 2982.5581 0.000 isolated
## 1377 2982.5581 0.000 isolated
## 1378 2982.5581 0.000 isolated
## 1379 2982.5581 0.000 isolated
## 1380 2982.5581 0.000 isolated
## 1381 2982.5581 0.000 isolated
## 1382 2982.5581 0.000 isolated
## 1383 2982.5581 0.000 isolated
## 1384 2982.5581 0.000 isolated
## 1385 2982.5581 0.000 isolated
## 1386 2982.5581 0.000 isolated
## 1387 2982.5581 0.000 isolated
## 1388 2982.5581 0.000 isolated
## 1389 2982.5581 0.000 isolated
## 1390 2982.5581 0.000 isolated
## 1391 2982.5581 0.000 isolated
## 1392 2982.5581 0.000 isolated
## 1393 2398.2558 0.000 isolated
## 1394 2398.2558 0.000 isolated
## 1395 2398.2558 0.000 isolated
## 1396 2398.2558 0.000 isolated
## 1397 2398.2558 0.000 isolated
## 1398 2398.2558 0.000 isolated
## 1399 2398.2558 0.000 isolated
## 1400 2398.2558 0.000 isolated
## 1401 2398.2558 0.000 isolated
## 1402 2398.2558 0.000 isolated
## 1403 2398.2558 0.000 isolated
## 1404 2398.2558 0.000 isolated
## 1405 2398.2558 0.000 isolated
## 1406 2398.2558 0.000 isolated
## 1407 2398.2558 0.000 isolated
## 1408 2398.2558 0.000 isolated
## 1409 2398.2558 0.000 isolated
## 1410 2398.2558 0.000 isolated
## 1411 2398.2558 0.000 isolated
## 1412 2398.2558 0.000 isolated
## 1413 2398.2558 0.000 isolated
## 1414 2398.2558 0.000 isolated
## 1415 2398.2558 0.000 isolated
## 1416 2398.2558 0.000 isolated
## 1417 6793.6047 0.000 isolated
## 1418 6793.6047 0.000 isolated
## 1419 6793.6047 0.000 isolated
## 1420 6793.6047 0.000 isolated
## 1421 6793.6047 0.000 isolated
## 1422 6793.6047 0.000 isolated
## 1423 6793.6047 0.000 isolated
## 1424 6793.6047 0.000 isolated
## 1425 6793.6047 0.000 isolated
## 1426 6793.6047 0.000 isolated
## 1427 6793.6047 0.000 isolated
## 1428 6793.6047 0.000 isolated
## 1429 6793.6047 0.000 isolated
## 1430 6793.6047 0.000 isolated
## 1431 6793.6047 0.000 isolated
## 1432 6793.6047 0.000 isolated
## 1433 6793.6047 0.000 isolated
## 1434 6793.6047 0.000 isolated
## 1435 6793.6047 0.000 isolated
## 1436 6793.6047 0.000 isolated
## 1437 6793.6047 0.000 isolated
## 1438 6793.6047 0.000 isolated
## 1439 6793.6047 0.000 isolated
## 1440 6793.6047 0.000 isolated
## 1441 2215.1163 0.000 isolated
## 1442 2215.1163 0.000 isolated
## 1443 2215.1163 0.000 isolated
## 1444 2215.1163 0.000 isolated
## 1445 2215.1163 0.000 isolated
## 1446 2215.1163 0.000 isolated
## 1447 2215.1163 0.000 isolated
## 1448 2215.1163 0.000 isolated
## 1449 2215.1163 0.000 isolated
## 1450 2215.1163 0.000 isolated
## 1451 2215.1163 0.000 isolated
## 1452 2215.1163 0.000 isolated
## 1453 2215.1163 0.000 isolated
## 1454 2215.1163 0.000 isolated
## 1455 2215.1163 0.000 isolated
## 1456 2215.1163 0.000 isolated
## 1457 2215.1163 0.000 isolated
## 1458 2215.1163 0.000 isolated
## 1459 2215.1163 0.000 isolated
## 1460 2215.1163 0.000 isolated
## 1461 2215.1163 0.000 isolated
## 1462 2215.1163 0.000 isolated
## 1463 2215.1163 0.000 isolated
## 1464 2215.1163 0.000 isolated
## 1465 5450.5814 0.000 isolated
## 1466 5450.5814 0.000 isolated
## 1467 5450.5814 0.000 isolated
## 1468 5450.5814 0.000 isolated
## 1469 5450.5814 0.000 isolated
## 1470 5450.5814 0.000 isolated
## 1471 5450.5814 0.000 isolated
## 1472 5450.5814 0.000 isolated
## 1473 5450.5814 0.000 isolated
## 1474 5450.5814 0.000 isolated
## 1475 5450.5814 0.000 isolated
## 1476 5450.5814 0.000 isolated
## 1477 5450.5814 0.000 isolated
## 1478 5450.5814 0.000 isolated
## 1479 5450.5814 0.000 isolated
## 1480 5450.5814 0.000 isolated
## 1481 5450.5814 0.000 isolated
## 1482 5450.5814 0.000 isolated
## 1483 5450.5814 0.000 isolated
## 1484 5450.5814 0.000 isolated
## 1485 5450.5814 0.000 isolated
## 1486 5450.5814 0.000 isolated
## 1487 5450.5814 0.000 isolated
## 1488 5450.5814 0.000 isolated
## 1489 697.6744 0.000 isolated
## 1490 697.6744 0.000 isolated
## 1491 697.6744 0.000 isolated
## 1492 697.6744 0.000 isolated
## 1493 697.6744 0.000 isolated
## 1494 697.6744 0.000 isolated
## 1495 697.6744 0.000 isolated
## 1496 697.6744 0.000 isolated
## 1497 697.6744 0.000 isolated
## 1498 697.6744 0.000 isolated
## 1499 697.6744 0.000 isolated
## 1500 697.6744 0.000 isolated
## 1501 697.6744 0.000 isolated
## 1502 697.6744 0.000 isolated
## 1503 697.6744 0.000 isolated
## 1504 697.6744 0.000 isolated
## 1505 697.6744 0.000 isolated
## 1506 697.6744 0.000 isolated
## 1507 697.6744 0.000 isolated
## 1508 697.6744 0.000 isolated
## 1509 697.6744 0.000 isolated
## 1510 697.6744 0.000 isolated
## 1511 697.6744 0.000 isolated
## 1512 697.6744 0.000 isolated
## 1513 1229.6512 0.000 isolated
## 1514 1229.6512 0.000 isolated
## 1515 1229.6512 0.000 isolated
## 1516 1229.6512 0.000 isolated
## 1517 1229.6512 0.000 isolated
## 1518 1229.6512 0.000 isolated
## 1519 1229.6512 0.000 isolated
## 1520 1229.6512 0.000 isolated
## 1521 1229.6512 0.000 isolated
## 1522 1229.6512 0.000 isolated
## 1523 1229.6512 0.000 isolated
## 1524 1229.6512 0.000 isolated
## 1525 1229.6512 0.000 isolated
## 1526 1229.6512 0.000 isolated
## 1527 1229.6512 0.000 isolated
## 1528 1229.6512 0.000 isolated
## 1529 1229.6512 0.000 isolated
## 1530 1229.6512 0.000 isolated
## 1531 1229.6512 0.000 isolated
## 1532 1229.6512 0.000 isolated
## 1533 1229.6512 0.000 isolated
## 1534 1229.6512 0.000 isolated
## 1535 1229.6512 0.000 isolated
## 1536 1229.6512 0.000 isolated
## 1537 981.9767 2243.895 isolated
## 1538 981.9767 2243.895 isolated
## 1539 981.9767 2243.895 isolated
## 1540 981.9767 2243.895 isolated
## 1541 981.9767 2243.895 isolated
## 1542 981.9767 2243.895 isolated
## 1543 981.9767 2243.895 isolated
## 1544 981.9767 2243.895 isolated
## 1545 981.9767 2243.895 isolated
## 1546 981.9767 2243.895 isolated
## 1547 981.9767 2243.895 isolated
## 1548 981.9767 2243.895 isolated
## 1549 981.9767 2243.895 isolated
## 1550 981.9767 2243.895 isolated
## 1551 981.9767 2243.895 isolated
## 1552 981.9767 2243.895 isolated
## 1553 981.9767 2243.895 isolated
## 1554 981.9767 2243.895 isolated
## 1555 981.9767 2243.895 isolated
## 1556 981.9767 2243.895 isolated
## 1557 981.9767 2243.895 isolated
## 1558 981.9767 2243.895 isolated
## 1559 981.9767 2243.895 isolated
## 1560 981.9767 2243.895 isolated
## 1561 2337.2093 0.000 isolated
## 1562 2337.2093 0.000 isolated
## 1563 2337.2093 0.000 isolated
## 1564 2337.2093 0.000 isolated
## 1565 2337.2093 0.000 isolated
## 1566 2337.2093 0.000 isolated
## 1567 2337.2093 0.000 isolated
## 1568 2337.2093 0.000 isolated
## 1569 2337.2093 0.000 isolated
## 1570 2337.2093 0.000 isolated
## 1571 2337.2093 0.000 isolated
## 1572 2337.2093 0.000 isolated
## 1573 2337.2093 0.000 isolated
## 1574 2337.2093 0.000 isolated
## 1575 2337.2093 0.000 isolated
## 1576 2337.2093 0.000 isolated
## 1577 2337.2093 0.000 isolated
## 1578 2337.2093 0.000 isolated
## 1579 2337.2093 0.000 isolated
## 1580 2337.2093 0.000 isolated
## 1581 2337.2093 0.000 isolated
## 1582 2337.2093 0.000 isolated
## 1583 2337.2093 0.000 isolated
## 1584 2337.2093 0.000 isolated
## 1585 1308.1395 0.000 isolated
## 1586 1308.1395 0.000 isolated
## 1587 1308.1395 0.000 isolated
## 1588 1308.1395 0.000 isolated
## 1589 1308.1395 0.000 isolated
## 1590 1308.1395 0.000 isolated
## 1591 1308.1395 0.000 isolated
## 1592 1308.1395 0.000 isolated
## 1593 1308.1395 0.000 isolated
## 1594 1308.1395 0.000 isolated
## 1595 1308.1395 0.000 isolated
## 1596 1308.1395 0.000 isolated
## 1597 1308.1395 0.000 isolated
## 1598 1308.1395 0.000 isolated
## 1599 1308.1395 0.000 isolated
## 1600 1308.1395 0.000 isolated
## 1601 1308.1395 0.000 isolated
## 1602 1308.1395 0.000 isolated
## 1603 1308.1395 0.000 isolated
## 1604 1308.1395 0.000 isolated
## 1605 1308.1395 0.000 isolated
## 1606 1308.1395 0.000 isolated
## 1607 1308.1395 0.000 isolated
## 1608 1308.1395 0.000 isolated
## 1609 1090.1163 0.000 isolated
## 1610 1090.1163 0.000 isolated
## 1611 1090.1163 0.000 isolated
## 1612 1090.1163 0.000 isolated
## 1613 1090.1163 0.000 isolated
## 1614 1090.1163 0.000 isolated
## 1615 1090.1163 0.000 isolated
## 1616 1090.1163 0.000 isolated
## 1617 1090.1163 0.000 isolated
## 1618 1090.1163 0.000 isolated
## 1619 1090.1163 0.000 isolated
## 1620 1090.1163 0.000 isolated
## 1621 1090.1163 0.000 isolated
## 1622 1090.1163 0.000 isolated
## 1623 1090.1163 0.000 isolated
## 1624 1090.1163 0.000 isolated
## 1625 1090.1163 0.000 isolated
## 1626 1090.1163 0.000 isolated
## 1627 1090.1163 0.000 isolated
## 1628 1090.1163 0.000 isolated
## 1629 1090.1163 0.000 isolated
## 1630 1090.1163 0.000 isolated
## 1631 1090.1163 0.000 isolated
## 1632 1090.1163 0.000 isolated
## 1633 0.0000 0.000 isolated
## 1634 0.0000 0.000 isolated
## 1635 0.0000 0.000 isolated
## 1636 0.0000 0.000 isolated
## 1637 0.0000 0.000 isolated
## 1638 0.0000 0.000 isolated
## 1639 0.0000 0.000 isolated
## 1640 0.0000 0.000 isolated
## 1641 0.0000 0.000 isolated
## 1642 0.0000 0.000 isolated
## 1643 0.0000 0.000 isolated
## 1644 0.0000 0.000 isolated
## 1645 0.0000 0.000 isolated
## 1646 0.0000 0.000 isolated
## 1647 0.0000 0.000 isolated
## 1648 0.0000 0.000 isolated
## 1649 0.0000 0.000 isolated
## 1650 0.0000 0.000 isolated
## 1651 0.0000 0.000 isolated
## 1652 0.0000 0.000 isolated
## 1653 0.0000 0.000 isolated
## 1654 0.0000 0.000 isolated
## 1655 0.0000 0.000 isolated
## 1656 0.0000 0.000 isolated
## 1657 0.0000 0.000 isolated
## 1658 0.0000 0.000 isolated
## 1659 0.0000 0.000 isolated
## 1660 0.0000 0.000 isolated
## 1661 0.0000 0.000 isolated
## 1662 0.0000 0.000 isolated
## 1663 0.0000 0.000 isolated
## 1664 0.0000 0.000 isolated
## 1665 0.0000 0.000 isolated
## 1666 0.0000 0.000 isolated
## 1667 0.0000 0.000 isolated
## 1668 0.0000 0.000 isolated
## 1669 0.0000 0.000 isolated
## 1670 0.0000 0.000 isolated
## 1671 0.0000 0.000 isolated
## 1672 0.0000 0.000 isolated
## 1673 0.0000 0.000 isolated
## 1674 0.0000 0.000 isolated
## 1675 0.0000 0.000 isolated
## 1676 0.0000 0.000 isolated
## 1677 0.0000 0.000 isolated
## 1678 0.0000 0.000 isolated
## 1679 0.0000 0.000 isolated
## 1680 0.0000 0.000 isolated
## 1681 0.0000 0.000 isolated
## 1682 0.0000 0.000 isolated
## 1683 0.0000 0.000 isolated
## 1684 0.0000 0.000 isolated
## 1685 0.0000 0.000 isolated
## 1686 0.0000 0.000 isolated
## 1687 0.0000 0.000 isolated
## 1688 0.0000 0.000 isolated
## 1689 0.0000 0.000 isolated
## 1690 0.0000 0.000 isolated
## 1691 0.0000 0.000 isolated
## 1692 0.0000 0.000 isolated
## 1693 0.0000 0.000 isolated
## 1694 0.0000 0.000 isolated
## 1695 0.0000 0.000 isolated
## 1696 0.0000 0.000 isolated
## 1697 0.0000 0.000 isolated
## 1698 0.0000 0.000 isolated
## 1699 0.0000 0.000 isolated
## 1700 0.0000 0.000 isolated
## 1701 0.0000 0.000 isolated
## 1702 0.0000 0.000 isolated
## 1703 0.0000 0.000 isolated
## 1704 0.0000 0.000 isolated
## 1705 0.0000 0.000 isolated
## 1706 0.0000 0.000 isolated
## 1707 0.0000 0.000 isolated
## 1708 0.0000 0.000 isolated
## 1709 0.0000 0.000 isolated
## 1710 0.0000 0.000 isolated
## 1711 0.0000 0.000 isolated
## 1712 0.0000 0.000 isolated
## 1713 0.0000 0.000 isolated
## 1714 0.0000 0.000 isolated
## 1715 0.0000 0.000 isolated
## 1716 0.0000 0.000 isolated
## 1717 0.0000 0.000 isolated
## 1718 0.0000 0.000 isolated
## 1719 0.0000 0.000 isolated
## 1720 0.0000 0.000 isolated
## 1721 0.0000 0.000 isolated
## 1722 0.0000 0.000 isolated
## 1723 0.0000 0.000 isolated
## 1724 0.0000 0.000 isolated
## 1725 0.0000 0.000 isolated
## 1726 0.0000 0.000 isolated
## 1727 0.0000 0.000 isolated
## 1728 0.0000 0.000 isolated
## 1729 981.9767 2243.895 isolated
## 1730 981.9767 2243.895 isolated
## 1731 981.9767 2243.895 isolated
## 1732 981.9767 2243.895 isolated
## 1733 981.9767 2243.895 isolated
## 1734 981.9767 2243.895 isolated
## 1735 981.9767 2243.895 isolated
## 1736 981.9767 2243.895 isolated
## 1737 981.9767 2243.895 isolated
## 1738 981.9767 2243.895 isolated
## 1739 981.9767 2243.895 isolated
## 1740 981.9767 2243.895 isolated
## 1741 981.9767 2243.895 isolated
## 1742 981.9767 2243.895 isolated
## 1743 981.9767 2243.895 isolated
## 1744 981.9767 2243.895 isolated
## 1745 981.9767 2243.895 isolated
## 1746 981.9767 2243.895 isolated
## 1747 981.9767 2243.895 isolated
## 1748 981.9767 2243.895 isolated
## 1749 981.9767 2243.895 isolated
## 1750 981.9767 2243.895 isolated
## 1751 981.9767 2243.895 isolated
## 1752 981.9767 2243.895 isolated
## 1753 1622.0930 0.000 isolated
## 1754 1622.0930 0.000 isolated
## 1755 1622.0930 0.000 isolated
## 1756 1622.0930 0.000 isolated
## 1757 1622.0930 0.000 isolated
## 1758 1622.0930 0.000 isolated
## 1759 1622.0930 0.000 isolated
## 1760 1622.0930 0.000 isolated
## 1761 1622.0930 0.000 isolated
## 1762 1622.0930 0.000 isolated
## 1763 1622.0930 0.000 isolated
## 1764 1622.0930 0.000 isolated
## 1765 1622.0930 0.000 isolated
## 1766 1622.0930 0.000 isolated
## 1767 1622.0930 0.000 isolated
## 1768 1622.0930 0.000 isolated
## 1769 1622.0930 0.000 isolated
## 1770 1622.0930 0.000 isolated
## 1771 1622.0930 0.000 isolated
## 1772 1622.0930 0.000 isolated
## 1773 1622.0930 0.000 isolated
## 1774 1622.0930 0.000 isolated
## 1775 1622.0930 0.000 isolated
## 1776 1622.0930 0.000 isolated
## 1777 1613.3721 0.000 isolated
## 1778 1613.3721 0.000 isolated
## 1779 1613.3721 0.000 isolated
## 1780 1613.3721 0.000 isolated
## 1781 1613.3721 0.000 isolated
## 1782 1613.3721 0.000 isolated
## 1783 1613.3721 0.000 isolated
## 1784 1613.3721 0.000 isolated
## 1785 1613.3721 0.000 isolated
## 1786 1613.3721 0.000 isolated
## 1787 1613.3721 0.000 isolated
## 1788 1613.3721 0.000 isolated
## 1789 1613.3721 0.000 isolated
## 1790 1613.3721 0.000 isolated
## 1791 1613.3721 0.000 isolated
## 1792 1613.3721 0.000 isolated
## 1793 1613.3721 0.000 isolated
## 1794 1613.3721 0.000 isolated
## 1795 1613.3721 0.000 isolated
## 1796 1613.3721 0.000 isolated
## 1797 1613.3721 0.000 isolated
## 1798 1613.3721 0.000 isolated
## 1799 1613.3721 0.000 isolated
## 1800 1613.3721 0.000 isolated
## 1801 2136.6279 0.000 isolated
## 1802 2136.6279 0.000 isolated
## 1803 2136.6279 0.000 isolated
## 1804 2136.6279 0.000 isolated
## 1805 2136.6279 0.000 isolated
## 1806 2136.6279 0.000 isolated
## 1807 2136.6279 0.000 isolated
## 1808 2136.6279 0.000 isolated
## 1809 2136.6279 0.000 isolated
## 1810 2136.6279 0.000 isolated
## 1811 2136.6279 0.000 isolated
## 1812 2136.6279 0.000 isolated
## 1813 2136.6279 0.000 isolated
## 1814 2136.6279 0.000 isolated
## 1815 2136.6279 0.000 isolated
## 1816 2136.6279 0.000 isolated
## 1817 2136.6279 0.000 isolated
## 1818 2136.6279 0.000 isolated
## 1819 2136.6279 0.000 isolated
## 1820 2136.6279 0.000 isolated
## 1821 2136.6279 0.000 isolated
## 1822 2136.6279 0.000 isolated
## 1823 2136.6279 0.000 isolated
## 1824 2136.6279 0.000 isolated
## 1825 1090.1163 0.000 isolated
## 1826 1090.1163 0.000 isolated
## 1827 1090.1163 0.000 isolated
## 1828 1090.1163 0.000 isolated
## 1829 1090.1163 0.000 isolated
## 1830 1090.1163 0.000 isolated
## 1831 1090.1163 0.000 isolated
## 1832 1090.1163 0.000 isolated
## 1833 1090.1163 0.000 isolated
## 1834 1090.1163 0.000 isolated
## 1835 1090.1163 0.000 isolated
## 1836 1090.1163 0.000 isolated
## 1837 1090.1163 0.000 isolated
## 1838 1090.1163 0.000 isolated
## 1839 1090.1163 0.000 isolated
## 1840 1090.1163 0.000 isolated
## 1841 1090.1163 0.000 isolated
## 1842 1090.1163 0.000 isolated
## 1843 1090.1163 0.000 isolated
## 1844 1090.1163 0.000 isolated
## 1845 1090.1163 0.000 isolated
## 1846 1090.1163 0.000 isolated
## 1847 1090.1163 0.000 isolated
## 1848 1090.1163 0.000 isolated
## 1849 1090.1163 0.000 isolated
## 1850 1090.1163 0.000 isolated
## 1851 1090.1163 0.000 isolated
## 1852 1090.1163 0.000 isolated
## 1853 1090.1163 0.000 isolated
## 1854 1090.1163 0.000 isolated
## 1855 1090.1163 0.000 isolated
## 1856 1090.1163 0.000 isolated
## 1857 1090.1163 0.000 isolated
## 1858 1090.1163 0.000 isolated
## 1859 1090.1163 0.000 isolated
## 1860 1090.1163 0.000 isolated
## 1861 1090.1163 0.000 isolated
## 1862 1090.1163 0.000 isolated
## 1863 1090.1163 0.000 isolated
## 1864 1090.1163 0.000 isolated
## 1865 1090.1163 0.000 isolated
## 1866 1090.1163 0.000 isolated
## 1867 1090.1163 0.000 isolated
## 1868 1090.1163 0.000 isolated
## 1869 1090.1163 0.000 isolated
## 1870 1090.1163 0.000 isolated
## 1871 1090.1163 0.000 isolated
## 1872 1090.1163 0.000 isolated
## 1873 3126.4535 0.000 isolated
## 1874 3126.4535 0.000 isolated
## 1875 3126.4535 0.000 isolated
## 1876 3126.4535 0.000 isolated
## 1877 3126.4535 0.000 isolated
## 1878 3126.4535 0.000 isolated
## 1879 3126.4535 0.000 isolated
## 1880 3126.4535 0.000 isolated
## 1881 3126.4535 0.000 isolated
## 1882 3126.4535 0.000 isolated
## 1883 3126.4535 0.000 isolated
## 1884 3126.4535 0.000 isolated
## 1885 3126.4535 0.000 isolated
## 1886 3126.4535 0.000 isolated
## 1887 3126.4535 0.000 isolated
## 1888 3126.4535 0.000 isolated
## 1889 3126.4535 0.000 isolated
## 1890 3126.4535 0.000 isolated
## 1891 3126.4535 0.000 isolated
## 1892 3126.4535 0.000 isolated
## 1893 3126.4535 0.000 isolated
## 1894 3126.4535 0.000 isolated
## 1895 3126.4535 0.000 isolated
## 1896 3126.4535 0.000 isolated
## 1897 1077.0349 0.000 isolated
## 1898 1077.0349 0.000 isolated
## 1899 1077.0349 0.000 isolated
## 1900 1077.0349 0.000 isolated
## 1901 1077.0349 0.000 isolated
## 1902 1077.0349 0.000 isolated
## 1903 1077.0349 0.000 isolated
## 1904 1077.0349 0.000 isolated
## 1905 1077.0349 0.000 isolated
## 1906 1077.0349 0.000 isolated
## 1907 1077.0349 0.000 isolated
## 1908 1077.0349 0.000 isolated
## 1909 1077.0349 0.000 isolated
## 1910 1077.0349 0.000 isolated
## 1911 1077.0349 0.000 isolated
## 1912 1077.0349 0.000 isolated
## 1913 1077.0349 0.000 isolated
## 1914 1077.0349 0.000 isolated
## 1915 1077.0349 0.000 isolated
## 1916 1077.0349 0.000 isolated
## 1917 1077.0349 0.000 isolated
## 1918 1077.0349 0.000 isolated
## 1919 1077.0349 0.000 isolated
## 1920 1077.0349 0.000 isolated
## 1921 981.9767 2243.895 isolated
## 1922 981.9767 2243.895 isolated
## 1923 981.9767 2243.895 isolated
## 1924 981.9767 2243.895 isolated
## 1925 981.9767 2243.895 isolated
## 1926 981.9767 2243.895 isolated
## 1927 981.9767 2243.895 isolated
## 1928 981.9767 2243.895 isolated
## 1929 981.9767 2243.895 isolated
## 1930 981.9767 2243.895 isolated
## 1931 981.9767 2243.895 isolated
## 1932 981.9767 2243.895 isolated
## 1933 981.9767 2243.895 isolated
## 1934 981.9767 2243.895 isolated
## 1935 981.9767 2243.895 isolated
## 1936 981.9767 2243.895 isolated
## 1937 981.9767 2243.895 isolated
## 1938 981.9767 2243.895 isolated
## 1939 981.9767 2243.895 isolated
## 1940 981.9767 2243.895 isolated
## 1941 981.9767 2243.895 isolated
## 1942 981.9767 2243.895 isolated
## 1943 981.9767 2243.895 isolated
## 1944 981.9767 2243.895 isolated
## 1945 1526.1628 0.000 isolated
## 1946 1526.1628 0.000 isolated
## 1947 1526.1628 0.000 isolated
## 1948 1526.1628 0.000 isolated
## 1949 1526.1628 0.000 isolated
## 1950 1526.1628 0.000 isolated
## 1951 1526.1628 0.000 isolated
## 1952 1526.1628 0.000 isolated
## 1953 1526.1628 0.000 isolated
## 1954 1526.1628 0.000 isolated
## 1955 1526.1628 0.000 isolated
## 1956 1526.1628 0.000 isolated
## 1957 1526.1628 0.000 isolated
## 1958 1526.1628 0.000 isolated
## 1959 1526.1628 0.000 isolated
## 1960 1526.1628 0.000 isolated
## 1961 1526.1628 0.000 isolated
## 1962 1526.1628 0.000 isolated
## 1963 1526.1628 0.000 isolated
## 1964 1526.1628 0.000 isolated
## 1965 1526.1628 0.000 isolated
## 1966 1526.1628 0.000 isolated
## 1967 1526.1628 0.000 isolated
## 1968 1526.1628 0.000 isolated
## 1969 1793.0233 0.000 isolated
## 1970 1793.0233 0.000 isolated
## 1971 1793.0233 0.000 isolated
## 1972 1793.0233 0.000 isolated
## 1973 1793.0233 0.000 isolated
## 1974 1793.0233 0.000 isolated
## 1975 1793.0233 0.000 isolated
## 1976 1793.0233 0.000 isolated
## 1977 1793.0233 0.000 isolated
## 1978 1793.0233 0.000 isolated
## 1979 1793.0233 0.000 isolated
## 1980 1793.0233 0.000 isolated
## 1981 1793.0233 0.000 isolated
## 1982 1793.0233 0.000 isolated
## 1983 1793.0233 0.000 isolated
## 1984 1793.0233 0.000 isolated
## 1985 1793.0233 0.000 isolated
## 1986 1793.0233 0.000 isolated
## 1987 1793.0233 0.000 isolated
## 1988 1793.0233 0.000 isolated
## 1989 1793.0233 0.000 isolated
## 1990 1793.0233 0.000 isolated
## 1991 1793.0233 0.000 isolated
## 1992 1793.0233 0.000 isolated
## 1993 3165.6977 0.000 isolated
## 1994 3165.6977 0.000 isolated
## 1995 3165.6977 0.000 isolated
## 1996 3165.6977 0.000 isolated
## 1997 3165.6977 0.000 isolated
## 1998 3165.6977 0.000 isolated
## 1999 3165.6977 0.000 isolated
## 2000 3165.6977 0.000 isolated
## 2001 3165.6977 0.000 isolated
## 2002 3165.6977 0.000 isolated
## 2003 3165.6977 0.000 isolated
## 2004 3165.6977 0.000 isolated
## 2005 3165.6977 0.000 isolated
## 2006 3165.6977 0.000 isolated
## 2007 3165.6977 0.000 isolated
## 2008 3165.6977 0.000 isolated
## 2009 3165.6977 0.000 isolated
## 2010 3165.6977 0.000 isolated
## 2011 3165.6977 0.000 isolated
## 2012 3165.6977 0.000 isolated
## 2013 3165.6977 0.000 isolated
## 2014 3165.6977 0.000 isolated
## 2015 3165.6977 0.000 isolated
## 2016 3165.6977 0.000 isolated
## 2017 1090.1163 0.000 isolated
## 2018 1090.1163 0.000 isolated
## 2019 1090.1163 0.000 isolated
## 2020 1090.1163 0.000 isolated
## 2021 1090.1163 0.000 isolated
## 2022 1090.1163 0.000 isolated
## 2023 1090.1163 0.000 isolated
## 2024 1090.1163 0.000 isolated
## 2025 1090.1163 0.000 isolated
## 2026 1090.1163 0.000 isolated
## 2027 1090.1163 0.000 isolated
## 2028 1090.1163 0.000 isolated
## 2029 1090.1163 0.000 isolated
## 2030 1090.1163 0.000 isolated
## 2031 1090.1163 0.000 isolated
## 2032 1090.1163 0.000 isolated
## 2033 1090.1163 0.000 isolated
## 2034 1090.1163 0.000 isolated
## 2035 1090.1163 0.000 isolated
## 2036 1090.1163 0.000 isolated
## 2037 1090.1163 0.000 isolated
## 2038 1090.1163 0.000 isolated
## 2039 1090.1163 0.000 isolated
## 2040 1090.1163 0.000 isolated
## 2041 767.4419 0.000 isolated
## 2042 767.4419 0.000 isolated
## 2043 767.4419 0.000 isolated
## 2044 767.4419 0.000 isolated
## 2045 767.4419 0.000 isolated
## 2046 767.4419 0.000 isolated
## 2047 767.4419 0.000 isolated
## 2048 767.4419 0.000 isolated
## 2049 767.4419 0.000 isolated
## 2050 767.4419 0.000 isolated
## 2051 767.4419 0.000 isolated
## 2052 767.4419 0.000 isolated
## 2053 767.4419 0.000 isolated
## 2054 767.4419 0.000 isolated
## 2055 767.4419 0.000 isolated
## 2056 767.4419 0.000 isolated
## 2057 767.4419 0.000 isolated
## 2058 767.4419 0.000 isolated
## 2059 767.4419 0.000 isolated
## 2060 767.4419 0.000 isolated
## 2061 767.4419 0.000 isolated
## 2062 767.4419 0.000 isolated
## 2063 767.4419 0.000 isolated
## 2064 767.4419 0.000 isolated
## 2065 1460.7558 0.000 isolated
## 2066 1460.7558 0.000 isolated
## 2067 1460.7558 0.000 isolated
## 2068 1460.7558 0.000 isolated
## 2069 1460.7558 0.000 isolated
## 2070 1460.7558 0.000 isolated
## 2071 1460.7558 0.000 isolated
## 2072 1460.7558 0.000 isolated
## 2073 1460.7558 0.000 isolated
## 2074 1460.7558 0.000 isolated
## 2075 1460.7558 0.000 isolated
## 2076 1460.7558 0.000 isolated
## 2077 1460.7558 0.000 isolated
## 2078 1460.7558 0.000 isolated
## 2079 1460.7558 0.000 isolated
## 2080 1460.7558 0.000 isolated
## 2081 1460.7558 0.000 isolated
## 2082 1460.7558 0.000 isolated
## 2083 1460.7558 0.000 isolated
## 2084 1460.7558 0.000 isolated
## 2085 1460.7558 0.000 isolated
## 2086 1460.7558 0.000 isolated
## 2087 1460.7558 0.000 isolated
## 2088 1460.7558 0.000 isolated
## 2089 187.5000 0.000 isolated
## 2090 187.5000 0.000 isolated
## 2091 187.5000 0.000 isolated
## 2092 187.5000 0.000 isolated
## 2093 187.5000 0.000 isolated
## 2094 187.5000 0.000 isolated
## 2095 187.5000 0.000 isolated
## 2096 187.5000 0.000 isolated
## 2097 187.5000 0.000 isolated
## 2098 187.5000 0.000 isolated
## 2099 187.5000 0.000 isolated
## 2100 187.5000 0.000 isolated
## 2101 187.5000 0.000 isolated
## 2102 187.5000 0.000 isolated
## 2103 187.5000 0.000 isolated
## 2104 187.5000 0.000 isolated
## 2105 187.5000 0.000 isolated
## 2106 187.5000 0.000 isolated
## 2107 187.5000 0.000 isolated
## 2108 187.5000 0.000 isolated
## 2109 187.5000 0.000 isolated
## 2110 187.5000 0.000 isolated
## 2111 187.5000 0.000 isolated
## 2112 187.5000 0.000 isolated
## 2113 981.9767 2243.895 isolated
## 2114 981.9767 2243.895 isolated
## 2115 981.9767 2243.895 isolated
## 2116 981.9767 2243.895 isolated
## 2117 981.9767 2243.895 isolated
## 2118 981.9767 2243.895 isolated
## 2119 981.9767 2243.895 isolated
## 2120 981.9767 2243.895 isolated
## 2121 981.9767 2243.895 isolated
## 2122 981.9767 2243.895 isolated
## 2123 981.9767 2243.895 isolated
## 2124 981.9767 2243.895 isolated
## 2125 981.9767 2243.895 isolated
## 2126 981.9767 2243.895 isolated
## 2127 981.9767 2243.895 isolated
## 2128 981.9767 2243.895 isolated
## 2129 981.9767 2243.895 isolated
## 2130 981.9767 2243.895 isolated
## 2131 981.9767 2243.895 isolated
## 2132 981.9767 2243.895 isolated
## 2133 981.9767 2243.895 isolated
## 2134 981.9767 2243.895 isolated
## 2135 981.9767 2243.895 isolated
## 2136 981.9767 2243.895 isolated
## 2137 436.0465 0.000 isolated
## 2138 436.0465 0.000 isolated
## 2139 436.0465 0.000 isolated
## 2140 436.0465 0.000 isolated
## 2141 436.0465 0.000 isolated
## 2142 436.0465 0.000 isolated
## 2143 436.0465 0.000 isolated
## 2144 436.0465 0.000 isolated
## 2145 436.0465 0.000 isolated
## 2146 436.0465 0.000 isolated
## 2147 436.0465 0.000 isolated
## 2148 436.0465 0.000 isolated
## 2149 436.0465 0.000 isolated
## 2150 436.0465 0.000 isolated
## 2151 436.0465 0.000 isolated
## 2152 436.0465 0.000 isolated
## 2153 436.0465 0.000 isolated
## 2154 436.0465 0.000 isolated
## 2155 436.0465 0.000 isolated
## 2156 436.0465 0.000 isolated
## 2157 436.0465 0.000 isolated
## 2158 436.0465 0.000 isolated
## 2159 436.0465 0.000 isolated
## 2160 436.0465 0.000 isolated
## 2161 1705.8140 0.000 isolated
## 2162 1705.8140 0.000 isolated
## 2163 1705.8140 0.000 isolated
## 2164 1705.8140 0.000 isolated
## 2165 1705.8140 0.000 isolated
## 2166 1705.8140 0.000 isolated
## 2167 1705.8140 0.000 isolated
## 2168 1705.8140 0.000 isolated
## 2169 1705.8140 0.000 isolated
## 2170 1705.8140 0.000 isolated
## 2171 1705.8140 0.000 isolated
## 2172 1705.8140 0.000 isolated
## 2173 1705.8140 0.000 isolated
## 2174 1705.8140 0.000 isolated
## 2175 1705.8140 0.000 isolated
## 2176 1705.8140 0.000 isolated
## 2177 1705.8140 0.000 isolated
## 2178 1705.8140 0.000 isolated
## 2179 1705.8140 0.000 isolated
## 2180 1705.8140 0.000 isolated
## 2181 1705.8140 0.000 isolated
## 2182 1705.8140 0.000 isolated
## 2183 1705.8140 0.000 isolated
## 2184 1705.8140 0.000 isolated
## 2185 3340.1163 0.000 isolated
## 2186 3340.1163 0.000 isolated
## 2187 3340.1163 0.000 isolated
## 2188 3340.1163 0.000 isolated
## 2189 3340.1163 0.000 isolated
## 2190 3340.1163 0.000 isolated
## 2191 3340.1163 0.000 isolated
## 2192 3340.1163 0.000 isolated
## 2193 3340.1163 0.000 isolated
## 2194 3340.1163 0.000 isolated
## 2195 3340.1163 0.000 isolated
## 2196 3340.1163 0.000 isolated
## 2197 3340.1163 0.000 isolated
## 2198 3340.1163 0.000 isolated
## 2199 3340.1163 0.000 isolated
## 2200 3340.1163 0.000 isolated
## 2201 3340.1163 0.000 isolated
## 2202 3340.1163 0.000 isolated
## 2203 3340.1163 0.000 isolated
## 2204 3340.1163 0.000 isolated
## 2205 3340.1163 0.000 isolated
## 2206 3340.1163 0.000 isolated
## 2207 3340.1163 0.000 isolated
## 2208 3340.1163 0.000 isolated
## 2209 0.0000 0.000 isolated
## 2210 0.0000 0.000 isolated
## 2211 0.0000 0.000 isolated
## 2212 0.0000 0.000 isolated
## 2213 0.0000 0.000 isolated
## 2214 0.0000 0.000 isolated
## 2215 0.0000 0.000 isolated
## 2216 0.0000 0.000 isolated
## 2217 0.0000 0.000 isolated
## 2218 0.0000 0.000 isolated
## 2219 0.0000 0.000 isolated
## 2220 0.0000 0.000 isolated
## 2221 0.0000 0.000 isolated
## 2222 0.0000 0.000 isolated
## 2223 0.0000 0.000 isolated
## 2224 0.0000 0.000 isolated
## 2225 0.0000 0.000 isolated
## 2226 0.0000 0.000 isolated
## 2227 0.0000 0.000 isolated
## 2228 0.0000 0.000 isolated
## 2229 0.0000 0.000 isolated
## 2230 0.0000 0.000 isolated
## 2231 0.0000 0.000 isolated
## 2232 0.0000 0.000 isolated
## 2233 3270.3488 0.000 isolated
## 2234 3270.3488 0.000 isolated
## 2235 3270.3488 0.000 isolated
## 2236 3270.3488 0.000 isolated
## 2237 3270.3488 0.000 isolated
## 2238 3270.3488 0.000 isolated
## 2239 3270.3488 0.000 isolated
## 2240 3270.3488 0.000 isolated
## 2241 3270.3488 0.000 isolated
## 2242 3270.3488 0.000 isolated
## 2243 3270.3488 0.000 isolated
## 2244 3270.3488 0.000 isolated
## 2245 3270.3488 0.000 isolated
## 2246 3270.3488 0.000 isolated
## 2247 3270.3488 0.000 isolated
## 2248 3270.3488 0.000 isolated
## 2249 3270.3488 0.000 isolated
## 2250 3270.3488 0.000 isolated
## 2251 3270.3488 0.000 isolated
## 2252 3270.3488 0.000 isolated
## 2253 3270.3488 0.000 isolated
## 2254 3270.3488 0.000 isolated
## 2255 3270.3488 0.000 isolated
## 2256 3270.3488 0.000 isolated
## 2257 218.0233 0.000 isolated
## 2258 218.0233 0.000 isolated
## 2259 218.0233 0.000 isolated
## 2260 218.0233 0.000 isolated
## 2261 218.0233 0.000 isolated
## 2262 218.0233 0.000 isolated
## 2263 218.0233 0.000 isolated
## 2264 218.0233 0.000 isolated
## 2265 218.0233 0.000 isolated
## 2266 218.0233 0.000 isolated
## 2267 218.0233 0.000 isolated
## 2268 218.0233 0.000 isolated
## 2269 218.0233 0.000 isolated
## 2270 218.0233 0.000 isolated
## 2271 218.0233 0.000 isolated
## 2272 218.0233 0.000 isolated
## 2273 218.0233 0.000 isolated
## 2274 218.0233 0.000 isolated
## 2275 218.0233 0.000 isolated
## 2276 218.0233 0.000 isolated
## 2277 218.0233 0.000 isolated
## 2278 218.0233 0.000 isolated
## 2279 218.0233 0.000 isolated
## 2280 218.0233 0.000 isolated
## 2281 928.7791 0.000 isolated
## 2282 928.7791 0.000 isolated
## 2283 928.7791 0.000 isolated
## 2284 928.7791 0.000 isolated
## 2285 928.7791 0.000 isolated
## 2286 928.7791 0.000 isolated
## 2287 928.7791 0.000 isolated
## 2288 928.7791 0.000 isolated
## 2289 928.7791 0.000 isolated
## 2290 928.7791 0.000 isolated
## 2291 928.7791 0.000 isolated
## 2292 928.7791 0.000 isolated
## 2293 928.7791 0.000 isolated
## 2294 928.7791 0.000 isolated
## 2295 928.7791 0.000 isolated
## 2296 928.7791 0.000 isolated
## 2297 928.7791 0.000 isolated
## 2298 928.7791 0.000 isolated
## 2299 928.7791 0.000 isolated
## 2300 928.7791 0.000 isolated
## 2301 928.7791 0.000 isolated
## 2302 928.7791 0.000 isolated
## 2303 928.7791 0.000 isolated
## 2304 928.7791 0.000 isolated
## 2305 981.9767 2243.895 isolated
## 2306 981.9767 2243.895 isolated
## 2307 981.9767 2243.895 isolated
## 2308 981.9767 2243.895 isolated
## 2309 981.9767 2243.895 isolated
## 2310 981.9767 2243.895 isolated
## 2311 981.9767 2243.895 isolated
## 2312 981.9767 2243.895 isolated
## 2313 981.9767 2243.895 isolated
## 2314 981.9767 2243.895 isolated
## 2315 981.9767 2243.895 isolated
## 2316 981.9767 2243.895 isolated
## 2317 981.9767 2243.895 isolated
## 2318 981.9767 2243.895 isolated
## 2319 981.9767 2243.895 isolated
## 2320 981.9767 2243.895 isolated
## 2321 981.9767 2243.895 isolated
## 2322 981.9767 2243.895 isolated
## 2323 981.9767 2243.895 isolated
## 2324 981.9767 2243.895 isolated
## 2325 981.9767 2243.895 isolated
## 2326 981.9767 2243.895 isolated
## 2327 981.9767 2243.895 isolated
## 2328 981.9767 2243.895 isolated
## 2329 3261.6279 0.000 isolated
## 2330 3261.6279 0.000 isolated
## 2331 3261.6279 0.000 isolated
## 2332 3261.6279 0.000 isolated
## 2333 3261.6279 0.000 isolated
## 2334 3261.6279 0.000 isolated
## 2335 3261.6279 0.000 isolated
## 2336 3261.6279 0.000 isolated
## 2337 3261.6279 0.000 isolated
## 2338 3261.6279 0.000 isolated
## 2339 3261.6279 0.000 isolated
## 2340 3261.6279 0.000 isolated
## 2341 3261.6279 0.000 isolated
## 2342 3261.6279 0.000 isolated
## 2343 3261.6279 0.000 isolated
## 2344 3261.6279 0.000 isolated
## 2345 3261.6279 0.000 isolated
## 2346 3261.6279 0.000 isolated
## 2347 3261.6279 0.000 isolated
## 2348 3261.6279 0.000 isolated
## 2349 3261.6279 0.000 isolated
## 2350 3261.6279 0.000 isolated
## 2351 3261.6279 0.000 isolated
## 2352 3261.6279 0.000 isolated
## 2353 2883.1395 0.000 isolated
## 2354 2883.1395 0.000 isolated
## 2355 2883.1395 0.000 isolated
## 2356 2883.1395 0.000 isolated
## 2357 2883.1395 0.000 isolated
## 2358 2883.1395 0.000 isolated
## 2359 2883.1395 0.000 isolated
## 2360 2883.1395 0.000 isolated
## 2361 2883.1395 0.000 isolated
## 2362 2883.1395 0.000 isolated
## 2363 2883.1395 0.000 isolated
## 2364 2883.1395 0.000 isolated
## 2365 2883.1395 0.000 isolated
## 2366 2883.1395 0.000 isolated
## 2367 2883.1395 0.000 isolated
## 2368 2883.1395 0.000 isolated
## 2369 2883.1395 0.000 isolated
## 2370 2883.1395 0.000 isolated
## 2371 2883.1395 0.000 isolated
## 2372 2883.1395 0.000 isolated
## 2373 2883.1395 0.000 isolated
## 2374 2883.1395 0.000 isolated
## 2375 2883.1395 0.000 isolated
## 2376 2883.1395 0.000 isolated
## 2377 7011.6279 0.000 isolated
## 2378 7011.6279 0.000 isolated
## 2379 7011.6279 0.000 isolated
## 2380 7011.6279 0.000 isolated
## 2381 7011.6279 0.000 isolated
## 2382 7011.6279 0.000 isolated
## 2383 7011.6279 0.000 isolated
## 2384 7011.6279 0.000 isolated
## 2385 7011.6279 0.000 isolated
## 2386 7011.6279 0.000 isolated
## 2387 7011.6279 0.000 isolated
## 2388 7011.6279 0.000 isolated
## 2389 7011.6279 0.000 isolated
## 2390 7011.6279 0.000 isolated
## 2391 7011.6279 0.000 isolated
## 2392 7011.6279 0.000 isolated
## 2393 7011.6279 0.000 isolated
## 2394 7011.6279 0.000 isolated
## 2395 7011.6279 0.000 isolated
## 2396 7011.6279 0.000 isolated
## 2397 7011.6279 0.000 isolated
## 2398 7011.6279 0.000 isolated
## 2399 7011.6279 0.000 isolated
## 2400 7011.6279 0.000 isolated
## 2401 2215.1163 0.000 isolated
## 2402 2215.1163 0.000 isolated
## 2403 2215.1163 0.000 isolated
## 2404 2215.1163 0.000 isolated
## 2405 2215.1163 0.000 isolated
## 2406 2215.1163 0.000 isolated
## 2407 2215.1163 0.000 isolated
## 2408 2215.1163 0.000 isolated
## 2409 2215.1163 0.000 isolated
## 2410 2215.1163 0.000 isolated
## 2411 2215.1163 0.000 isolated
## 2412 2215.1163 0.000 isolated
## 2413 2215.1163 0.000 isolated
## 2414 2215.1163 0.000 isolated
## 2415 2215.1163 0.000 isolated
## 2416 2215.1163 0.000 isolated
## 2417 2215.1163 0.000 isolated
## 2418 2215.1163 0.000 isolated
## 2419 2215.1163 0.000 isolated
## 2420 2215.1163 0.000 isolated
## 2421 2215.1163 0.000 isolated
## 2422 2215.1163 0.000 isolated
## 2423 2215.1163 0.000 isolated
## 2424 2215.1163 0.000 isolated
## 2425 5450.5814 0.000 isolated
## 2426 5450.5814 0.000 isolated
## 2427 5450.5814 0.000 isolated
## 2428 5450.5814 0.000 isolated
## 2429 5450.5814 0.000 isolated
## 2430 5450.5814 0.000 isolated
## 2431 5450.5814 0.000 isolated
## 2432 5450.5814 0.000 isolated
## 2433 5450.5814 0.000 isolated
## 2434 5450.5814 0.000 isolated
## 2435 5450.5814 0.000 isolated
## 2436 5450.5814 0.000 isolated
## 2437 5450.5814 0.000 isolated
## 2438 5450.5814 0.000 isolated
## 2439 5450.5814 0.000 isolated
## 2440 5450.5814 0.000 isolated
## 2441 5450.5814 0.000 isolated
## 2442 5450.5814 0.000 isolated
## 2443 5450.5814 0.000 isolated
## 2444 5450.5814 0.000 isolated
## 2445 5450.5814 0.000 isolated
## 2446 5450.5814 0.000 isolated
## 2447 5450.5814 0.000 isolated
## 2448 5450.5814 0.000 isolated
## 2449 806.6860 0.000 isolated
## 2450 806.6860 0.000 isolated
## 2451 806.6860 0.000 isolated
## 2452 806.6860 0.000 isolated
## 2453 806.6860 0.000 isolated
## 2454 806.6860 0.000 isolated
## 2455 806.6860 0.000 isolated
## 2456 806.6860 0.000 isolated
## 2457 806.6860 0.000 isolated
## 2458 806.6860 0.000 isolated
## 2459 806.6860 0.000 isolated
## 2460 806.6860 0.000 isolated
## 2461 806.6860 0.000 isolated
## 2462 806.6860 0.000 isolated
## 2463 806.6860 0.000 isolated
## 2464 806.6860 0.000 isolated
## 2465 806.6860 0.000 isolated
## 2466 806.6860 0.000 isolated
## 2467 806.6860 0.000 isolated
## 2468 806.6860 0.000 isolated
## 2469 806.6860 0.000 isolated
## 2470 806.6860 0.000 isolated
## 2471 806.6860 0.000 isolated
## 2472 806.6860 0.000 isolated
## 2473 1229.6512 0.000 isolated
## 2474 1229.6512 0.000 isolated
## 2475 1229.6512 0.000 isolated
## 2476 1229.6512 0.000 isolated
## 2477 1229.6512 0.000 isolated
## 2478 1229.6512 0.000 isolated
## 2479 1229.6512 0.000 isolated
## 2480 1229.6512 0.000 isolated
## 2481 1229.6512 0.000 isolated
## 2482 1229.6512 0.000 isolated
## 2483 1229.6512 0.000 isolated
## 2484 1229.6512 0.000 isolated
## 2485 1229.6512 0.000 isolated
## 2486 1229.6512 0.000 isolated
## 2487 1229.6512 0.000 isolated
## 2488 1229.6512 0.000 isolated
## 2489 1229.6512 0.000 isolated
## 2490 1229.6512 0.000 isolated
## 2491 1229.6512 0.000 isolated
## 2492 1229.6512 0.000 isolated
## 2493 1229.6512 0.000 isolated
## 2494 1229.6512 0.000 isolated
## 2495 1229.6512 0.000 isolated
## 2496 1229.6512 0.000 isolated
## 2497 981.9767 2243.895 isolated
## 2498 981.9767 2243.895 isolated
## 2499 981.9767 2243.895 isolated
## 2500 981.9767 2243.895 isolated
## 2501 981.9767 2243.895 isolated
## 2502 981.9767 2243.895 isolated
## 2503 981.9767 2243.895 isolated
## 2504 981.9767 2243.895 isolated
## 2505 981.9767 2243.895 isolated
## 2506 981.9767 2243.895 isolated
## 2507 981.9767 2243.895 isolated
## 2508 981.9767 2243.895 isolated
## 2509 981.9767 2243.895 isolated
## 2510 981.9767 2243.895 isolated
## 2511 981.9767 2243.895 isolated
## 2512 981.9767 2243.895 isolated
## 2513 981.9767 2243.895 isolated
## 2514 981.9767 2243.895 isolated
## 2515 981.9767 2243.895 isolated
## 2516 981.9767 2243.895 isolated
## 2517 981.9767 2243.895 isolated
## 2518 981.9767 2243.895 isolated
## 2519 981.9767 2243.895 isolated
## 2520 981.9767 2243.895 isolated
## 2521 2616.2791 0.000 isolated
## 2522 2616.2791 0.000 isolated
## 2523 2616.2791 0.000 isolated
## 2524 2616.2791 0.000 isolated
## 2525 2616.2791 0.000 isolated
## 2526 2616.2791 0.000 isolated
## 2527 2616.2791 0.000 isolated
## 2528 2616.2791 0.000 isolated
## 2529 2616.2791 0.000 isolated
## 2530 2616.2791 0.000 isolated
## 2531 2616.2791 0.000 isolated
## 2532 2616.2791 0.000 isolated
## 2533 2616.2791 0.000 isolated
## 2534 2616.2791 0.000 isolated
## 2535 2616.2791 0.000 isolated
## 2536 2616.2791 0.000 isolated
## 2537 2616.2791 0.000 isolated
## 2538 2616.2791 0.000 isolated
## 2539 2616.2791 0.000 isolated
## 2540 2616.2791 0.000 isolated
## 2541 2616.2791 0.000 isolated
## 2542 2616.2791 0.000 isolated
## 2543 2616.2791 0.000 isolated
## 2544 2616.2791 0.000 isolated
## 2545 1793.0233 0.000 isolated
## 2546 1793.0233 0.000 isolated
## 2547 1793.0233 0.000 isolated
## 2548 1793.0233 0.000 isolated
## 2549 1793.0233 0.000 isolated
## 2550 1793.0233 0.000 isolated
## 2551 1793.0233 0.000 isolated
## 2552 1793.0233 0.000 isolated
## 2553 1793.0233 0.000 isolated
## 2554 1793.0233 0.000 isolated
## 2555 1793.0233 0.000 isolated
## 2556 1793.0233 0.000 isolated
## 2557 1793.0233 0.000 isolated
## 2558 1793.0233 0.000 isolated
## 2559 1793.0233 0.000 isolated
## 2560 1793.0233 0.000 isolated
## 2561 1793.0233 0.000 isolated
## 2562 1793.0233 0.000 isolated
## 2563 1793.0233 0.000 isolated
## 2564 1793.0233 0.000 isolated
## 2565 1793.0233 0.000 isolated
## 2566 1793.0233 0.000 isolated
## 2567 1793.0233 0.000 isolated
## 2568 1793.0233 0.000 isolated
## 2569 1308.1395 0.000 isolated
## 2570 1308.1395 0.000 isolated
## 2571 1308.1395 0.000 isolated
## 2572 1308.1395 0.000 isolated
## 2573 1308.1395 0.000 isolated
## 2574 1308.1395 0.000 isolated
## 2575 1308.1395 0.000 isolated
## 2576 1308.1395 0.000 isolated
## 2577 1308.1395 0.000 isolated
## 2578 1308.1395 0.000 isolated
## 2579 1308.1395 0.000 isolated
## 2580 1308.1395 0.000 isolated
## 2581 1308.1395 0.000 isolated
## 2582 1308.1395 0.000 isolated
## 2583 1308.1395 0.000 isolated
## 2584 1308.1395 0.000 isolated
## 2585 1308.1395 0.000 isolated
## 2586 1308.1395 0.000 isolated
## 2587 1308.1395 0.000 isolated
## 2588 1308.1395 0.000 isolated
## 2589 1308.1395 0.000 isolated
## 2590 1308.1395 0.000 isolated
## 2591 1308.1395 0.000 isolated
## 2592 1308.1395 0.000 isolated
## 2593 0.0000 0.000 isolated
## 2594 0.0000 0.000 isolated
## 2595 0.0000 0.000 isolated
## 2596 0.0000 0.000 isolated
## 2597 0.0000 0.000 isolated
## 2598 0.0000 0.000 isolated
## 2599 0.0000 0.000 isolated
## 2600 0.0000 0.000 isolated
## 2601 0.0000 0.000 isolated
## 2602 0.0000 0.000 isolated
## 2603 0.0000 0.000 isolated
## 2604 0.0000 0.000 isolated
## 2605 0.0000 0.000 isolated
## 2606 0.0000 0.000 isolated
## 2607 0.0000 0.000 isolated
## 2608 0.0000 0.000 isolated
## 2609 0.0000 0.000 isolated
## 2610 0.0000 0.000 isolated
## 2611 0.0000 0.000 isolated
## 2612 0.0000 0.000 isolated
## 2613 0.0000 0.000 isolated
## 2614 0.0000 0.000 isolated
## 2615 0.0000 0.000 isolated
## 2616 0.0000 0.000 isolated
## 2617 0.0000 0.000 isolated
## 2618 0.0000 0.000 isolated
## 2619 0.0000 0.000 isolated
## 2620 0.0000 0.000 isolated
## 2621 0.0000 0.000 isolated
## 2622 0.0000 0.000 isolated
## 2623 0.0000 0.000 isolated
## 2624 0.0000 0.000 isolated
## 2625 0.0000 0.000 isolated
## 2626 0.0000 0.000 isolated
## 2627 0.0000 0.000 isolated
## 2628 0.0000 0.000 isolated
## 2629 0.0000 0.000 isolated
## 2630 0.0000 0.000 isolated
## 2631 0.0000 0.000 isolated
## 2632 0.0000 0.000 isolated
## 2633 0.0000 0.000 isolated
## 2634 0.0000 0.000 isolated
## 2635 0.0000 0.000 isolated
## 2636 0.0000 0.000 isolated
## 2637 0.0000 0.000 isolated
## 2638 0.0000 0.000 isolated
## 2639 0.0000 0.000 isolated
## 2640 0.0000 0.000 isolated
## 2641 109.0116 0.000 isolated
## 2642 109.0116 0.000 isolated
## 2643 109.0116 0.000 isolated
## 2644 109.0116 0.000 isolated
## 2645 109.0116 0.000 isolated
## 2646 109.0116 0.000 isolated
## 2647 109.0116 0.000 isolated
## 2648 109.0116 0.000 isolated
## 2649 109.0116 0.000 isolated
## 2650 109.0116 0.000 isolated
## 2651 109.0116 0.000 isolated
## 2652 109.0116 0.000 isolated
## 2653 109.0116 0.000 isolated
## 2654 109.0116 0.000 isolated
## 2655 109.0116 0.000 isolated
## 2656 109.0116 0.000 isolated
## 2657 109.0116 0.000 isolated
## 2658 109.0116 0.000 isolated
## 2659 109.0116 0.000 isolated
## 2660 109.0116 0.000 isolated
## 2661 109.0116 0.000 isolated
## 2662 109.0116 0.000 isolated
## 2663 109.0116 0.000 isolated
## 2664 109.0116 0.000 isolated
## 2665 0.0000 0.000 isolated
## 2666 0.0000 0.000 isolated
## 2667 0.0000 0.000 isolated
## 2668 0.0000 0.000 isolated
## 2669 0.0000 0.000 isolated
## 2670 0.0000 0.000 isolated
## 2671 0.0000 0.000 isolated
## 2672 0.0000 0.000 isolated
## 2673 0.0000 0.000 isolated
## 2674 0.0000 0.000 isolated
## 2675 0.0000 0.000 isolated
## 2676 0.0000 0.000 isolated
## 2677 0.0000 0.000 isolated
## 2678 0.0000 0.000 isolated
## 2679 0.0000 0.000 isolated
## 2680 0.0000 0.000 isolated
## 2681 0.0000 0.000 isolated
## 2682 0.0000 0.000 isolated
## 2683 0.0000 0.000 isolated
## 2684 0.0000 0.000 isolated
## 2685 0.0000 0.000 isolated
## 2686 0.0000 0.000 isolated
## 2687 0.0000 0.000 isolated
## 2688 0.0000 0.000 isolated
## 2689 981.9767 2243.895 isolated
## 2690 981.9767 2243.895 isolated
## 2691 981.9767 2243.895 isolated
## 2692 981.9767 2243.895 isolated
## 2693 981.9767 2243.895 isolated
## 2694 981.9767 2243.895 isolated
## 2695 981.9767 2243.895 isolated
## 2696 981.9767 2243.895 isolated
## 2697 981.9767 2243.895 isolated
## 2698 981.9767 2243.895 isolated
## 2699 981.9767 2243.895 isolated
## 2700 981.9767 2243.895 isolated
## 2701 981.9767 2243.895 isolated
## 2702 981.9767 2243.895 isolated
## 2703 981.9767 2243.895 isolated
## 2704 981.9767 2243.895 isolated
## 2705 981.9767 2243.895 isolated
## 2706 981.9767 2243.895 isolated
## 2707 981.9767 2243.895 isolated
## 2708 981.9767 2243.895 isolated
## 2709 981.9767 2243.895 isolated
## 2710 981.9767 2243.895 isolated
## 2711 981.9767 2243.895 isolated
## 2712 981.9767 2243.895 isolated
## 2713 1901.1628 0.000 isolated
## 2714 1901.1628 0.000 isolated
## 2715 1901.1628 0.000 isolated
## 2716 1901.1628 0.000 isolated
## 2717 1901.1628 0.000 isolated
## 2718 1901.1628 0.000 isolated
## 2719 1901.1628 0.000 isolated
## 2720 1901.1628 0.000 isolated
## 2721 1901.1628 0.000 isolated
## 2722 1901.1628 0.000 isolated
## 2723 1901.1628 0.000 isolated
## 2724 1901.1628 0.000 isolated
## 2725 1901.1628 0.000 isolated
## 2726 1901.1628 0.000 isolated
## 2727 1901.1628 0.000 isolated
## 2728 1901.1628 0.000 isolated
## 2729 1901.1628 0.000 isolated
## 2730 1901.1628 0.000 isolated
## 2731 1901.1628 0.000 isolated
## 2732 1901.1628 0.000 isolated
## 2733 1901.1628 0.000 isolated
## 2734 1901.1628 0.000 isolated
## 2735 1901.1628 0.000 isolated
## 2736 1901.1628 0.000 isolated
## 2737 2098.2558 0.000 isolated
## 2738 2098.2558 0.000 isolated
## 2739 2098.2558 0.000 isolated
## 2740 2098.2558 0.000 isolated
## 2741 2098.2558 0.000 isolated
## 2742 2098.2558 0.000 isolated
## 2743 2098.2558 0.000 isolated
## 2744 2098.2558 0.000 isolated
## 2745 2098.2558 0.000 isolated
## 2746 2098.2558 0.000 isolated
## 2747 2098.2558 0.000 isolated
## 2748 2098.2558 0.000 isolated
## 2749 2098.2558 0.000 isolated
## 2750 2098.2558 0.000 isolated
## 2751 2098.2558 0.000 isolated
## 2752 2098.2558 0.000 isolated
## 2753 2098.2558 0.000 isolated
## 2754 2098.2558 0.000 isolated
## 2755 2098.2558 0.000 isolated
## 2756 2098.2558 0.000 isolated
## 2757 2098.2558 0.000 isolated
## 2758 2098.2558 0.000 isolated
## 2759 2098.2558 0.000 isolated
## 2760 2098.2558 0.000 isolated
## 2761 2354.6512 0.000 isolated
## 2762 2354.6512 0.000 isolated
## 2763 2354.6512 0.000 isolated
## 2764 2354.6512 0.000 isolated
## 2765 2354.6512 0.000 isolated
## 2766 2354.6512 0.000 isolated
## 2767 2354.6512 0.000 isolated
## 2768 2354.6512 0.000 isolated
## 2769 2354.6512 0.000 isolated
## 2770 2354.6512 0.000 isolated
## 2771 2354.6512 0.000 isolated
## 2772 2354.6512 0.000 isolated
## 2773 2354.6512 0.000 isolated
## 2774 2354.6512 0.000 isolated
## 2775 2354.6512 0.000 isolated
## 2776 2354.6512 0.000 isolated
## 2777 2354.6512 0.000 isolated
## 2778 2354.6512 0.000 isolated
## 2779 2354.6512 0.000 isolated
## 2780 2354.6512 0.000 isolated
## 2781 2354.6512 0.000 isolated
## 2782 2354.6512 0.000 isolated
## 2783 2354.6512 0.000 isolated
## 2784 2354.6512 0.000 isolated
## 2785 1090.1163 0.000 isolated
## 2786 1090.1163 0.000 isolated
## 2787 1090.1163 0.000 isolated
## 2788 1090.1163 0.000 isolated
## 2789 1090.1163 0.000 isolated
## 2790 1090.1163 0.000 isolated
## 2791 1090.1163 0.000 isolated
## 2792 1090.1163 0.000 isolated
## 2793 1090.1163 0.000 isolated
## 2794 1090.1163 0.000 isolated
## 2795 1090.1163 0.000 isolated
## 2796 1090.1163 0.000 isolated
## 2797 1090.1163 0.000 isolated
## 2798 1090.1163 0.000 isolated
## 2799 1090.1163 0.000 isolated
## 2800 1090.1163 0.000 isolated
## 2801 1090.1163 0.000 isolated
## 2802 1090.1163 0.000 isolated
## 2803 1090.1163 0.000 isolated
## 2804 1090.1163 0.000 isolated
## 2805 1090.1163 0.000 isolated
## 2806 1090.1163 0.000 isolated
## 2807 1090.1163 0.000 isolated
## 2808 1090.1163 0.000 isolated
## 2809 1090.1163 0.000 isolated
## 2810 1090.1163 0.000 isolated
## 2811 1090.1163 0.000 isolated
## 2812 1090.1163 0.000 isolated
## 2813 1090.1163 0.000 isolated
## 2814 1090.1163 0.000 isolated
## 2815 1090.1163 0.000 isolated
## 2816 1090.1163 0.000 isolated
## 2817 1090.1163 0.000 isolated
## 2818 1090.1163 0.000 isolated
## 2819 1090.1163 0.000 isolated
## 2820 1090.1163 0.000 isolated
## 2821 1090.1163 0.000 isolated
## 2822 1090.1163 0.000 isolated
## 2823 1090.1163 0.000 isolated
## 2824 1090.1163 0.000 isolated
## 2825 1090.1163 0.000 isolated
## 2826 1090.1163 0.000 isolated
## 2827 1090.1163 0.000 isolated
## 2828 1090.1163 0.000 isolated
## 2829 1090.1163 0.000 isolated
## 2830 1090.1163 0.000 isolated
## 2831 1090.1163 0.000 isolated
## 2832 1090.1163 0.000 isolated
## 2833 3235.4651 0.000 isolated
## 2834 3235.4651 0.000 isolated
## 2835 3235.4651 0.000 isolated
## 2836 3235.4651 0.000 isolated
## 2837 3235.4651 0.000 isolated
## 2838 3235.4651 0.000 isolated
## 2839 3235.4651 0.000 isolated
## 2840 3235.4651 0.000 isolated
## 2841 3235.4651 0.000 isolated
## 2842 3235.4651 0.000 isolated
## 2843 3235.4651 0.000 isolated
## 2844 3235.4651 0.000 isolated
## 2845 3235.4651 0.000 isolated
## 2846 3235.4651 0.000 isolated
## 2847 3235.4651 0.000 isolated
## 2848 3235.4651 0.000 isolated
## 2849 3235.4651 0.000 isolated
## 2850 3235.4651 0.000 isolated
## 2851 3235.4651 0.000 isolated
## 2852 3235.4651 0.000 isolated
## 2853 3235.4651 0.000 isolated
## 2854 3235.4651 0.000 isolated
## 2855 3235.4651 0.000 isolated
## 2856 3235.4651 0.000 isolated
## 2857 1077.0349 0.000 isolated
## 2858 1077.0349 0.000 isolated
## 2859 1077.0349 0.000 isolated
## 2860 1077.0349 0.000 isolated
## 2861 1077.0349 0.000 isolated
## 2862 1077.0349 0.000 isolated
## 2863 1077.0349 0.000 isolated
## 2864 1077.0349 0.000 isolated
## 2865 1077.0349 0.000 isolated
## 2866 1077.0349 0.000 isolated
## 2867 1077.0349 0.000 isolated
## 2868 1077.0349 0.000 isolated
## 2869 1077.0349 0.000 isolated
## 2870 1077.0349 0.000 isolated
## 2871 1077.0349 0.000 isolated
## 2872 1077.0349 0.000 isolated
## 2873 1077.0349 0.000 isolated
## 2874 1077.0349 0.000 isolated
## 2875 1077.0349 0.000 isolated
## 2876 1077.0349 0.000 isolated
## 2877 1077.0349 0.000 isolated
## 2878 1077.0349 0.000 isolated
## 2879 1077.0349 0.000 isolated
## 2880 1077.0349 0.000 isolated
## 2881 981.9767 2243.895 isolated
## 2882 981.9767 2243.895 isolated
## 2883 981.9767 2243.895 isolated
## 2884 981.9767 2243.895 isolated
## 2885 981.9767 2243.895 isolated
## 2886 981.9767 2243.895 isolated
## 2887 981.9767 2243.895 isolated
## 2888 981.9767 2243.895 isolated
## 2889 981.9767 2243.895 isolated
## 2890 981.9767 2243.895 isolated
## 2891 981.9767 2243.895 isolated
## 2892 981.9767 2243.895 isolated
## 2893 981.9767 2243.895 isolated
## 2894 981.9767 2243.895 isolated
## 2895 981.9767 2243.895 isolated
## 2896 981.9767 2243.895 isolated
## 2897 981.9767 2243.895 isolated
## 2898 981.9767 2243.895 isolated
## 2899 981.9767 2243.895 isolated
## 2900 981.9767 2243.895 isolated
## 2901 981.9767 2243.895 isolated
## 2902 981.9767 2243.895 isolated
## 2903 981.9767 2243.895 isolated
## 2904 981.9767 2243.895 isolated
## 2905 1508.7209 0.000 isolated
## 2906 1508.7209 0.000 isolated
## 2907 1508.7209 0.000 isolated
## 2908 1508.7209 0.000 isolated
## 2909 1508.7209 0.000 isolated
## 2910 1508.7209 0.000 isolated
## 2911 1508.7209 0.000 isolated
## 2912 1508.7209 0.000 isolated
## 2913 1508.7209 0.000 isolated
## 2914 1508.7209 0.000 isolated
## 2915 1508.7209 0.000 isolated
## 2916 1508.7209 0.000 isolated
## 2917 1508.7209 0.000 isolated
## 2918 1508.7209 0.000 isolated
## 2919 1508.7209 0.000 isolated
## 2920 1508.7209 0.000 isolated
## 2921 1508.7209 0.000 isolated
## 2922 1508.7209 0.000 isolated
## 2923 1508.7209 0.000 isolated
## 2924 1508.7209 0.000 isolated
## 2925 1508.7209 0.000 isolated
## 2926 1508.7209 0.000 isolated
## 2927 1508.7209 0.000 isolated
## 2928 1508.7209 0.000 isolated
## 2929 1308.1395 0.000 isolated
## 2930 1308.1395 0.000 isolated
## 2931 1308.1395 0.000 isolated
## 2932 1308.1395 0.000 isolated
## 2933 1308.1395 0.000 isolated
## 2934 1308.1395 0.000 isolated
## 2935 1308.1395 0.000 isolated
## 2936 1308.1395 0.000 isolated
## 2937 1308.1395 0.000 isolated
## 2938 1308.1395 0.000 isolated
## 2939 1308.1395 0.000 isolated
## 2940 1308.1395 0.000 isolated
## 2941 1308.1395 0.000 isolated
## 2942 1308.1395 0.000 isolated
## 2943 1308.1395 0.000 isolated
## 2944 1308.1395 0.000 isolated
## 2945 1308.1395 0.000 isolated
## 2946 1308.1395 0.000 isolated
## 2947 1308.1395 0.000 isolated
## 2948 1308.1395 0.000 isolated
## 2949 1308.1395 0.000 isolated
## 2950 1308.1395 0.000 isolated
## 2951 1308.1395 0.000 isolated
## 2952 1308.1395 0.000 isolated
## 2953 2947.6744 0.000 isolated
## 2954 2947.6744 0.000 isolated
## 2955 2947.6744 0.000 isolated
## 2956 2947.6744 0.000 isolated
## 2957 2947.6744 0.000 isolated
## 2958 2947.6744 0.000 isolated
## 2959 2947.6744 0.000 isolated
## 2960 2947.6744 0.000 isolated
## 2961 2947.6744 0.000 isolated
## 2962 2947.6744 0.000 isolated
## 2963 2947.6744 0.000 isolated
## 2964 2947.6744 0.000 isolated
## 2965 2947.6744 0.000 isolated
## 2966 2947.6744 0.000 isolated
## 2967 2947.6744 0.000 isolated
## 2968 2947.6744 0.000 isolated
## 2969 2947.6744 0.000 isolated
## 2970 2947.6744 0.000 isolated
## 2971 2947.6744 0.000 isolated
## 2972 2947.6744 0.000 isolated
## 2973 2947.6744 0.000 isolated
## 2974 2947.6744 0.000 isolated
## 2975 2947.6744 0.000 isolated
## 2976 2947.6744 0.000 isolated
## 2977 1090.1163 0.000 isolated
## 2978 1090.1163 0.000 isolated
## 2979 1090.1163 0.000 isolated
## 2980 1090.1163 0.000 isolated
## 2981 1090.1163 0.000 isolated
## 2982 1090.1163 0.000 isolated
## 2983 1090.1163 0.000 isolated
## 2984 1090.1163 0.000 isolated
## 2985 1090.1163 0.000 isolated
## 2986 1090.1163 0.000 isolated
## 2987 1090.1163 0.000 isolated
## 2988 1090.1163 0.000 isolated
## 2989 1090.1163 0.000 isolated
## 2990 1090.1163 0.000 isolated
## 2991 1090.1163 0.000 isolated
## 2992 1090.1163 0.000 isolated
## 2993 1090.1163 0.000 isolated
## 2994 1090.1163 0.000 isolated
## 2995 1090.1163 0.000 isolated
## 2996 1090.1163 0.000 isolated
## 2997 1090.1163 0.000 isolated
## 2998 1090.1163 0.000 isolated
## 2999 1090.1163 0.000 isolated
## 3000 1090.1163 0.000 isolated
## 3001 767.4419 0.000 isolated
## 3002 767.4419 0.000 isolated
## 3003 767.4419 0.000 isolated
## 3004 767.4419 0.000 isolated
## 3005 767.4419 0.000 isolated
## 3006 767.4419 0.000 isolated
## 3007 767.4419 0.000 isolated
## 3008 767.4419 0.000 isolated
## 3009 767.4419 0.000 isolated
## 3010 767.4419 0.000 isolated
## 3011 767.4419 0.000 isolated
## 3012 767.4419 0.000 isolated
## 3013 767.4419 0.000 isolated
## 3014 767.4419 0.000 isolated
## 3015 767.4419 0.000 isolated
## 3016 767.4419 0.000 isolated
## 3017 767.4419 0.000 isolated
## 3018 767.4419 0.000 isolated
## 3019 767.4419 0.000 isolated
## 3020 767.4419 0.000 isolated
## 3021 767.4419 0.000 isolated
## 3022 767.4419 0.000 isolated
## 3023 767.4419 0.000 isolated
## 3024 767.4419 0.000 isolated
## 3025 1351.7442 0.000 isolated
## 3026 1351.7442 0.000 isolated
## 3027 1351.7442 0.000 isolated
## 3028 1351.7442 0.000 isolated
## 3029 1351.7442 0.000 isolated
## 3030 1351.7442 0.000 isolated
## 3031 1351.7442 0.000 isolated
## 3032 1351.7442 0.000 isolated
## 3033 1351.7442 0.000 isolated
## 3034 1351.7442 0.000 isolated
## 3035 1351.7442 0.000 isolated
## 3036 1351.7442 0.000 isolated
## 3037 1351.7442 0.000 isolated
## 3038 1351.7442 0.000 isolated
## 3039 1351.7442 0.000 isolated
## 3040 1351.7442 0.000 isolated
## 3041 1351.7442 0.000 isolated
## 3042 1351.7442 0.000 isolated
## 3043 1351.7442 0.000 isolated
## 3044 1351.7442 0.000 isolated
## 3045 1351.7442 0.000 isolated
## 3046 1351.7442 0.000 isolated
## 3047 1351.7442 0.000 isolated
## 3048 1351.7442 0.000 isolated
## 3049 187.5000 0.000 isolated
## 3050 187.5000 0.000 isolated
## 3051 187.5000 0.000 isolated
## 3052 187.5000 0.000 isolated
## 3053 187.5000 0.000 isolated
## 3054 187.5000 0.000 isolated
## 3055 187.5000 0.000 isolated
## 3056 187.5000 0.000 isolated
## 3057 187.5000 0.000 isolated
## 3058 187.5000 0.000 isolated
## 3059 187.5000 0.000 isolated
## 3060 187.5000 0.000 isolated
## 3061 187.5000 0.000 isolated
## 3062 187.5000 0.000 isolated
## 3063 187.5000 0.000 isolated
## 3064 187.5000 0.000 isolated
## 3065 187.5000 0.000 isolated
## 3066 187.5000 0.000 isolated
## 3067 187.5000 0.000 isolated
## 3068 187.5000 0.000 isolated
## 3069 187.5000 0.000 isolated
## 3070 187.5000 0.000 isolated
## 3071 187.5000 0.000 isolated
## 3072 187.5000 0.000 isolated
## 3073 981.9767 2243.895 isolated
## 3074 981.9767 2243.895 isolated
## 3075 981.9767 2243.895 isolated
## 3076 981.9767 2243.895 isolated
## 3077 981.9767 2243.895 isolated
## 3078 981.9767 2243.895 isolated
## 3079 981.9767 2243.895 isolated
## 3080 981.9767 2243.895 isolated
## 3081 981.9767 2243.895 isolated
## 3082 981.9767 2243.895 isolated
## 3083 981.9767 2243.895 isolated
## 3084 981.9767 2243.895 isolated
## 3085 981.9767 2243.895 isolated
## 3086 981.9767 2243.895 isolated
## 3087 981.9767 2243.895 isolated
## 3088 981.9767 2243.895 isolated
## 3089 981.9767 2243.895 isolated
## 3090 981.9767 2243.895 isolated
## 3091 981.9767 2243.895 isolated
## 3092 981.9767 2243.895 isolated
## 3093 981.9767 2243.895 isolated
## 3094 981.9767 2243.895 isolated
## 3095 981.9767 2243.895 isolated
## 3096 981.9767 2243.895 isolated
## 3097 418.6047 0.000 isolated
## 3098 418.6047 0.000 isolated
## 3099 418.6047 0.000 isolated
## 3100 418.6047 0.000 isolated
## 3101 418.6047 0.000 isolated
## 3102 418.6047 0.000 isolated
## 3103 418.6047 0.000 isolated
## 3104 418.6047 0.000 isolated
## 3105 418.6047 0.000 isolated
## 3106 418.6047 0.000 isolated
## 3107 418.6047 0.000 isolated
## 3108 418.6047 0.000 isolated
## 3109 418.6047 0.000 isolated
## 3110 418.6047 0.000 isolated
## 3111 418.6047 0.000 isolated
## 3112 418.6047 0.000 isolated
## 3113 418.6047 0.000 isolated
## 3114 418.6047 0.000 isolated
## 3115 418.6047 0.000 isolated
## 3116 418.6047 0.000 isolated
## 3117 418.6047 0.000 isolated
## 3118 418.6047 0.000 isolated
## 3119 418.6047 0.000 isolated
## 3120 418.6047 0.000 isolated
## 3121 1220.9302 0.000 isolated
## 3122 1220.9302 0.000 isolated
## 3123 1220.9302 0.000 isolated
## 3124 1220.9302 0.000 isolated
## 3125 1220.9302 0.000 isolated
## 3126 1220.9302 0.000 isolated
## 3127 1220.9302 0.000 isolated
## 3128 1220.9302 0.000 isolated
## 3129 1220.9302 0.000 isolated
## 3130 1220.9302 0.000 isolated
## 3131 1220.9302 0.000 isolated
## 3132 1220.9302 0.000 isolated
## 3133 1220.9302 0.000 isolated
## 3134 1220.9302 0.000 isolated
## 3135 1220.9302 0.000 isolated
## 3136 1220.9302 0.000 isolated
## 3137 1220.9302 0.000 isolated
## 3138 1220.9302 0.000 isolated
## 3139 1220.9302 0.000 isolated
## 3140 1220.9302 0.000 isolated
## 3141 1220.9302 0.000 isolated
## 3142 1220.9302 0.000 isolated
## 3143 1220.9302 0.000 isolated
## 3144 1220.9302 0.000 isolated
## 3145 3122.0930 0.000 isolated
## 3146 3122.0930 0.000 isolated
## 3147 3122.0930 0.000 isolated
## 3148 3122.0930 0.000 isolated
## 3149 3122.0930 0.000 isolated
## 3150 3122.0930 0.000 isolated
## 3151 3122.0930 0.000 isolated
## 3152 3122.0930 0.000 isolated
## 3153 3122.0930 0.000 isolated
## 3154 3122.0930 0.000 isolated
## 3155 3122.0930 0.000 isolated
## 3156 3122.0930 0.000 isolated
## 3157 3122.0930 0.000 isolated
## 3158 3122.0930 0.000 isolated
## 3159 3122.0930 0.000 isolated
## 3160 3122.0930 0.000 isolated
## 3161 3122.0930 0.000 isolated
## 3162 3122.0930 0.000 isolated
## 3163 3122.0930 0.000 isolated
## 3164 3122.0930 0.000 isolated
## 3165 3122.0930 0.000 isolated
## 3166 3122.0930 0.000 isolated
## 3167 3122.0930 0.000 isolated
## 3168 3122.0930 0.000 isolated
## 3169 0.0000 0.000 isolated
## 3170 0.0000 0.000 isolated
## 3171 0.0000 0.000 isolated
## 3172 0.0000 0.000 isolated
## 3173 0.0000 0.000 isolated
## 3174 0.0000 0.000 isolated
## 3175 0.0000 0.000 isolated
## 3176 0.0000 0.000 isolated
## 3177 0.0000 0.000 isolated
## 3178 0.0000 0.000 isolated
## 3179 0.0000 0.000 isolated
## 3180 0.0000 0.000 isolated
## 3181 0.0000 0.000 isolated
## 3182 0.0000 0.000 isolated
## 3183 0.0000 0.000 isolated
## 3184 0.0000 0.000 isolated
## 3185 0.0000 0.000 isolated
## 3186 0.0000 0.000 isolated
## 3187 0.0000 0.000 isolated
## 3188 0.0000 0.000 isolated
## 3189 0.0000 0.000 isolated
## 3190 0.0000 0.000 isolated
## 3191 0.0000 0.000 isolated
## 3192 0.0000 0.000 isolated
## 3193 3270.3488 0.000 isolated
## 3194 3270.3488 0.000 isolated
## 3195 3270.3488 0.000 isolated
## 3196 3270.3488 0.000 isolated
## 3197 3270.3488 0.000 isolated
## 3198 3270.3488 0.000 isolated
## 3199 3270.3488 0.000 isolated
## 3200 3270.3488 0.000 isolated
## 3201 3270.3488 0.000 isolated
## 3202 3270.3488 0.000 isolated
## 3203 3270.3488 0.000 isolated
## 3204 3270.3488 0.000 isolated
## 3205 3270.3488 0.000 isolated
## 3206 3270.3488 0.000 isolated
## 3207 3270.3488 0.000 isolated
## 3208 3270.3488 0.000 isolated
## 3209 3270.3488 0.000 isolated
## 3210 3270.3488 0.000 isolated
## 3211 3270.3488 0.000 isolated
## 3212 3270.3488 0.000 isolated
## 3213 3270.3488 0.000 isolated
## 3214 3270.3488 0.000 isolated
## 3215 3270.3488 0.000 isolated
## 3216 3270.3488 0.000 isolated
## 3217 109.0116 0.000 isolated
## 3218 109.0116 0.000 isolated
## 3219 109.0116 0.000 isolated
## 3220 109.0116 0.000 isolated
## 3221 109.0116 0.000 isolated
## 3222 109.0116 0.000 isolated
## 3223 109.0116 0.000 isolated
## 3224 109.0116 0.000 isolated
## 3225 109.0116 0.000 isolated
## patch_size_symmetry set ID_first_patch ID_second_patch
## 1 asymmetric 1 1 11
## 2 asymmetric 2 1 11
## 3 asymmetric 3 1 11
## 4 asymmetric 4 1 11
## 5 asymmetric 7 1 11
## 6 asymmetric 8 1 11
## 7 asymmetric 9 1 11
## 8 asymmetric 10 1 11
## 9 asymmetric 11 1 11
## 10 asymmetric 12 1 11
## 11 asymmetric 13 1 11
## 12 asymmetric 14 1 11
## 13 asymmetric 27 1 11
## 14 asymmetric 28 1 11
## 15 asymmetric 29 1 11
## 16 asymmetric 30 1 11
## 17 asymmetric 31 1 11
## 18 asymmetric 32 1 11
## 19 asymmetric 33 1 11
## 20 asymmetric 34 1 11
## 21 asymmetric 37 1 11
## 22 asymmetric 38 1 11
## 23 asymmetric 39 1 11
## 24 asymmetric 40 1 11
## 25 asymmetric 1 1 11
## 26 asymmetric 2 1 11
## 27 asymmetric 3 1 11
## 28 asymmetric 4 1 11
## 29 asymmetric 7 1 11
## 30 asymmetric 8 1 11
## 31 asymmetric 9 1 11
## 32 asymmetric 10 1 11
## 33 asymmetric 11 1 11
## 34 asymmetric 12 1 11
## 35 asymmetric 13 1 11
## 36 asymmetric 14 1 11
## 37 asymmetric 27 1 11
## 38 asymmetric 28 1 11
## 39 asymmetric 29 1 11
## 40 asymmetric 30 1 11
## 41 asymmetric 31 1 11
## 42 asymmetric 32 1 11
## 43 asymmetric 33 1 11
## 44 asymmetric 34 1 11
## 45 asymmetric 37 1 11
## 46 asymmetric 38 1 11
## 47 asymmetric 39 1 11
## 48 asymmetric 40 1 11
## 49 asymmetric 1 1 11
## 50 asymmetric 2 1 11
## 51 asymmetric 3 1 11
## 52 asymmetric 4 1 11
## 53 asymmetric 7 1 11
## 54 asymmetric 8 1 11
## 55 asymmetric 9 1 11
## 56 asymmetric 10 1 11
## 57 asymmetric 11 1 11
## 58 asymmetric 12 1 11
## 59 asymmetric 13 1 11
## 60 asymmetric 14 1 11
## 61 asymmetric 27 1 11
## 62 asymmetric 28 1 11
## 63 asymmetric 29 1 11
## 64 asymmetric 30 1 11
## 65 asymmetric 31 1 11
## 66 asymmetric 32 1 11
## 67 asymmetric 33 1 11
## 68 asymmetric 34 1 11
## 69 asymmetric 37 1 11
## 70 asymmetric 38 1 11
## 71 asymmetric 39 1 11
## 72 asymmetric 40 1 11
## 73 asymmetric 1 1 11
## 74 asymmetric 2 1 11
## 75 asymmetric 3 1 11
## 76 asymmetric 4 1 11
## 77 asymmetric 7 1 11
## 78 asymmetric 8 1 11
## 79 asymmetric 9 1 11
## 80 asymmetric 10 1 11
## 81 asymmetric 11 1 11
## 82 asymmetric 12 1 11
## 83 asymmetric 13 1 11
## 84 asymmetric 14 1 11
## 85 asymmetric 27 1 11
## 86 asymmetric 28 1 11
## 87 asymmetric 29 1 11
## 88 asymmetric 30 1 11
## 89 asymmetric 31 1 11
## 90 asymmetric 32 1 11
## 91 asymmetric 33 1 11
## 92 asymmetric 34 1 11
## 93 asymmetric 37 1 11
## 94 asymmetric 38 1 11
## 95 asymmetric 39 1 11
## 96 asymmetric 40 1 11
## 97 asymmetric 1 1 11
## 98 asymmetric 2 1 11
## 99 asymmetric 3 1 11
## 100 asymmetric 4 1 11
## 101 asymmetric 7 1 11
## 102 asymmetric 8 1 11
## 103 asymmetric 9 1 11
## 104 asymmetric 10 1 11
## 105 asymmetric 11 1 11
## 106 asymmetric 12 1 11
## 107 asymmetric 13 1 11
## 108 asymmetric 14 1 11
## 109 asymmetric 27 1 11
## 110 asymmetric 28 1 11
## 111 asymmetric 29 1 11
## 112 asymmetric 30 1 11
## 113 asymmetric 31 1 11
## 114 asymmetric 32 1 11
## 115 asymmetric 33 1 11
## 116 asymmetric 34 1 11
## 117 asymmetric 37 1 11
## 118 asymmetric 38 1 11
## 119 asymmetric 39 1 11
## 120 asymmetric 40 1 11
## 121 asymmetric 1 1 11
## 122 asymmetric 2 1 11
## 123 asymmetric 3 1 11
## 124 asymmetric 4 1 11
## 125 asymmetric 7 1 11
## 126 asymmetric 8 1 11
## 127 asymmetric 9 1 11
## 128 asymmetric 10 1 11
## 129 asymmetric 11 1 11
## 130 asymmetric 12 1 11
## 131 asymmetric 13 1 11
## 132 asymmetric 14 1 11
## 133 asymmetric 27 1 11
## 134 asymmetric 28 1 11
## 135 asymmetric 29 1 11
## 136 asymmetric 30 1 11
## 137 asymmetric 31 1 11
## 138 asymmetric 32 1 11
## 139 asymmetric 33 1 11
## 140 asymmetric 34 1 11
## 141 asymmetric 37 1 11
## 142 asymmetric 38 1 11
## 143 asymmetric 39 1 11
## 144 asymmetric 40 1 11
## 145 asymmetric 1 1 11
## 146 asymmetric 2 1 11
## 147 asymmetric 3 1 11
## 148 asymmetric 4 1 11
## 149 asymmetric 7 1 11
## 150 asymmetric 8 1 11
## 151 asymmetric 9 1 11
## 152 asymmetric 10 1 11
## 153 asymmetric 11 1 11
## 154 asymmetric 12 1 11
## 155 asymmetric 13 1 11
## 156 asymmetric 14 1 11
## 157 asymmetric 27 1 11
## 158 asymmetric 28 1 11
## 159 asymmetric 29 1 11
## 160 asymmetric 30 1 11
## 161 asymmetric 31 1 11
## 162 asymmetric 32 1 11
## 163 asymmetric 33 1 11
## 164 asymmetric 34 1 11
## 165 asymmetric 37 1 11
## 166 asymmetric 38 1 11
## 167 asymmetric 39 1 11
## 168 asymmetric 40 1 11
## 169 asymmetric 1 1 11
## 170 asymmetric 2 1 11
## 171 asymmetric 3 1 11
## 172 asymmetric 4 1 11
## 173 asymmetric 7 1 11
## 174 asymmetric 8 1 11
## 175 asymmetric 9 1 11
## 176 asymmetric 10 1 11
## 177 asymmetric 11 1 11
## 178 asymmetric 12 1 11
## 179 asymmetric 13 1 11
## 180 asymmetric 14 1 11
## 181 asymmetric 27 1 11
## 182 asymmetric 28 1 11
## 183 asymmetric 29 1 11
## 184 asymmetric 30 1 11
## 185 asymmetric 31 1 11
## 186 asymmetric 32 1 11
## 187 asymmetric 33 1 11
## 188 asymmetric 34 1 11
## 189 asymmetric 37 1 11
## 190 asymmetric 38 1 11
## 191 asymmetric 39 1 11
## 192 asymmetric 40 1 11
## 193 asymmetric 81 1 12
## 194 asymmetric 82 1 12
## 195 asymmetric 83 1 12
## 196 asymmetric 84 1 12
## 197 asymmetric 87 1 12
## 198 asymmetric 88 1 12
## 199 asymmetric 89 1 12
## 200 asymmetric 90 1 12
## 201 asymmetric 91 1 12
## 202 asymmetric 92 1 12
## 203 asymmetric 93 1 12
## 204 asymmetric 94 1 12
## 205 asymmetric 107 1 12
## 206 asymmetric 108 1 12
## 207 asymmetric 109 1 12
## 208 asymmetric 110 1 12
## 209 asymmetric 111 1 12
## 210 asymmetric 112 1 12
## 211 asymmetric 113 1 12
## 212 asymmetric 114 1 12
## 213 asymmetric 117 1 12
## 214 asymmetric 118 1 12
## 215 asymmetric 119 1 12
## 216 asymmetric 120 1 12
## 217 asymmetric 81 1 12
## 218 asymmetric 82 1 12
## 219 asymmetric 83 1 12
## 220 asymmetric 84 1 12
## 221 asymmetric 87 1 12
## 222 asymmetric 88 1 12
## 223 asymmetric 89 1 12
## 224 asymmetric 90 1 12
## 225 asymmetric 91 1 12
## 226 asymmetric 92 1 12
## 227 asymmetric 93 1 12
## 228 asymmetric 94 1 12
## 229 asymmetric 107 1 12
## 230 asymmetric 108 1 12
## 231 asymmetric 109 1 12
## 232 asymmetric 110 1 12
## 233 asymmetric 111 1 12
## 234 asymmetric 112 1 12
## 235 asymmetric 113 1 12
## 236 asymmetric 114 1 12
## 237 asymmetric 117 1 12
## 238 asymmetric 118 1 12
## 239 asymmetric 119 1 12
## 240 asymmetric 120 1 12
## 241 asymmetric 81 1 12
## 242 asymmetric 82 1 12
## 243 asymmetric 83 1 12
## 244 asymmetric 84 1 12
## 245 asymmetric 87 1 12
## 246 asymmetric 88 1 12
## 247 asymmetric 89 1 12
## 248 asymmetric 90 1 12
## 249 asymmetric 91 1 12
## 250 asymmetric 92 1 12
## 251 asymmetric 93 1 12
## 252 asymmetric 94 1 12
## 253 asymmetric 107 1 12
## 254 asymmetric 108 1 12
## 255 asymmetric 109 1 12
## 256 asymmetric 110 1 12
## 257 asymmetric 111 1 12
## 258 asymmetric 112 1 12
## 259 asymmetric 113 1 12
## 260 asymmetric 114 1 12
## 261 asymmetric 117 1 12
## 262 asymmetric 118 1 12
## 263 asymmetric 119 1 12
## 264 asymmetric 120 1 12
## 265 asymmetric 81 1 12
## 266 asymmetric 82 1 12
## 267 asymmetric 83 1 12
## 268 asymmetric 84 1 12
## 269 asymmetric 87 1 12
## 270 asymmetric 88 1 12
## 271 asymmetric 89 1 12
## 272 asymmetric 90 1 12
## 273 asymmetric 91 1 12
## 274 asymmetric 92 1 12
## 275 asymmetric 93 1 12
## 276 asymmetric 94 1 12
## 277 asymmetric 107 1 12
## 278 asymmetric 108 1 12
## 279 asymmetric 109 1 12
## 280 asymmetric 110 1 12
## 281 asymmetric 111 1 12
## 282 asymmetric 112 1 12
## 283 asymmetric 113 1 12
## 284 asymmetric 114 1 12
## 285 asymmetric 117 1 12
## 286 asymmetric 118 1 12
## 287 asymmetric 119 1 12
## 288 asymmetric 120 1 12
## 289 asymmetric 81 1 12
## 290 asymmetric 82 1 12
## 291 asymmetric 83 1 12
## 292 asymmetric 84 1 12
## 293 asymmetric 87 1 12
## 294 asymmetric 88 1 12
## 295 asymmetric 89 1 12
## 296 asymmetric 90 1 12
## 297 asymmetric 91 1 12
## 298 asymmetric 92 1 12
## 299 asymmetric 93 1 12
## 300 asymmetric 94 1 12
## 301 asymmetric 107 1 12
## 302 asymmetric 108 1 12
## 303 asymmetric 109 1 12
## 304 asymmetric 110 1 12
## 305 asymmetric 111 1 12
## 306 asymmetric 112 1 12
## 307 asymmetric 113 1 12
## 308 asymmetric 114 1 12
## 309 asymmetric 117 1 12
## 310 asymmetric 118 1 12
## 311 asymmetric 119 1 12
## 312 asymmetric 120 1 12
## 313 asymmetric 81 1 12
## 314 asymmetric 82 1 12
## 315 asymmetric 83 1 12
## 316 asymmetric 84 1 12
## 317 asymmetric 87 1 12
## 318 asymmetric 88 1 12
## 319 asymmetric 89 1 12
## 320 asymmetric 90 1 12
## 321 asymmetric 91 1 12
## 322 asymmetric 92 1 12
## 323 asymmetric 93 1 12
## 324 asymmetric 94 1 12
## 325 asymmetric 107 1 12
## 326 asymmetric 108 1 12
## 327 asymmetric 109 1 12
## 328 asymmetric 110 1 12
## 329 asymmetric 111 1 12
## 330 asymmetric 112 1 12
## 331 asymmetric 113 1 12
## 332 asymmetric 114 1 12
## 333 asymmetric 117 1 12
## 334 asymmetric 118 1 12
## 335 asymmetric 119 1 12
## 336 asymmetric 120 1 12
## 337 asymmetric 81 1 12
## 338 asymmetric 82 1 12
## 339 asymmetric 83 1 12
## 340 asymmetric 84 1 12
## 341 asymmetric 87 1 12
## 342 asymmetric 88 1 12
## 343 asymmetric 89 1 12
## 344 asymmetric 90 1 12
## 345 asymmetric 91 1 12
## 346 asymmetric 92 1 12
## 347 asymmetric 93 1 12
## 348 asymmetric 94 1 12
## 349 asymmetric 107 1 12
## 350 asymmetric 108 1 12
## 351 asymmetric 109 1 12
## 352 asymmetric 110 1 12
## 353 asymmetric 111 1 12
## 354 asymmetric 112 1 12
## 355 asymmetric 113 1 12
## 356 asymmetric 114 1 12
## 357 asymmetric 117 1 12
## 358 asymmetric 118 1 12
## 359 asymmetric 119 1 12
## 360 asymmetric 120 1 12
## 361 asymmetric 81 1 12
## 362 asymmetric 82 1 12
## 363 asymmetric 83 1 12
## 364 asymmetric 84 1 12
## 365 asymmetric 87 1 12
## 366 asymmetric 88 1 12
## 367 asymmetric 89 1 12
## 368 asymmetric 90 1 12
## 369 asymmetric 91 1 12
## 370 asymmetric 92 1 12
## 371 asymmetric 93 1 12
## 372 asymmetric 94 1 12
## 373 asymmetric 107 1 12
## 374 asymmetric 108 1 12
## 375 asymmetric 109 1 12
## 376 asymmetric 110 1 12
## 377 asymmetric 111 1 12
## 378 asymmetric 112 1 12
## 379 asymmetric 113 1 12
## 380 asymmetric 114 1 12
## 381 asymmetric 117 1 12
## 382 asymmetric 118 1 12
## 383 asymmetric 119 1 12
## 384 asymmetric 120 1 12
## 385 asymmetric 41 1 13
## 386 asymmetric 42 1 13
## 387 asymmetric 43 1 13
## 388 asymmetric 44 1 13
## 389 asymmetric 47 1 13
## 390 asymmetric 48 1 13
## 391 asymmetric 49 1 13
## 392 asymmetric 50 1 13
## 393 asymmetric 51 1 13
## 394 asymmetric 52 1 13
## 395 asymmetric 53 1 13
## 396 asymmetric 54 1 13
## 397 asymmetric 67 1 13
## 398 asymmetric 68 1 13
## 399 asymmetric 69 1 13
## 400 asymmetric 70 1 13
## 401 asymmetric 71 1 13
## 402 asymmetric 72 1 13
## 403 asymmetric 73 1 13
## 404 asymmetric 74 1 13
## 405 asymmetric 77 1 13
## 406 asymmetric 78 1 13
## 407 asymmetric 79 1 13
## 408 asymmetric 80 1 13
## 409 asymmetric 41 1 13
## 410 asymmetric 42 1 13
## 411 asymmetric 43 1 13
## 412 asymmetric 44 1 13
## 413 asymmetric 47 1 13
## 414 asymmetric 48 1 13
## 415 asymmetric 49 1 13
## 416 asymmetric 50 1 13
## 417 asymmetric 51 1 13
## 418 asymmetric 52 1 13
## 419 asymmetric 53 1 13
## 420 asymmetric 54 1 13
## 421 asymmetric 67 1 13
## 422 asymmetric 68 1 13
## 423 asymmetric 69 1 13
## 424 asymmetric 70 1 13
## 425 asymmetric 71 1 13
## 426 asymmetric 72 1 13
## 427 asymmetric 73 1 13
## 428 asymmetric 74 1 13
## 429 asymmetric 77 1 13
## 430 asymmetric 78 1 13
## 431 asymmetric 79 1 13
## 432 asymmetric 80 1 13
## 433 asymmetric 41 1 13
## 434 asymmetric 42 1 13
## 435 asymmetric 43 1 13
## 436 asymmetric 44 1 13
## 437 asymmetric 47 1 13
## 438 asymmetric 48 1 13
## 439 asymmetric 49 1 13
## 440 asymmetric 50 1 13
## 441 asymmetric 51 1 13
## 442 asymmetric 52 1 13
## 443 asymmetric 53 1 13
## 444 asymmetric 54 1 13
## 445 asymmetric 67 1 13
## 446 asymmetric 68 1 13
## 447 asymmetric 69 1 13
## 448 asymmetric 70 1 13
## 449 asymmetric 71 1 13
## 450 asymmetric 72 1 13
## 451 asymmetric 73 1 13
## 452 asymmetric 74 1 13
## 453 asymmetric 77 1 13
## 454 asymmetric 78 1 13
## 455 asymmetric 79 1 13
## 456 asymmetric 80 1 13
## 457 asymmetric 41 1 13
## 458 asymmetric 42 1 13
## 459 asymmetric 43 1 13
## 460 asymmetric 44 1 13
## 461 asymmetric 47 1 13
## 462 asymmetric 48 1 13
## 463 asymmetric 49 1 13
## 464 asymmetric 50 1 13
## 465 asymmetric 51 1 13
## 466 asymmetric 52 1 13
## 467 asymmetric 53 1 13
## 468 asymmetric 54 1 13
## 469 asymmetric 67 1 13
## 470 asymmetric 68 1 13
## 471 asymmetric 69 1 13
## 472 asymmetric 70 1 13
## 473 asymmetric 71 1 13
## 474 asymmetric 72 1 13
## 475 asymmetric 73 1 13
## 476 asymmetric 74 1 13
## 477 asymmetric 77 1 13
## 478 asymmetric 78 1 13
## 479 asymmetric 79 1 13
## 480 asymmetric 80 1 13
## 481 asymmetric 41 1 13
## 482 asymmetric 42 1 13
## 483 asymmetric 43 1 13
## 484 asymmetric 44 1 13
## 485 asymmetric 47 1 13
## 486 asymmetric 48 1 13
## 487 asymmetric 49 1 13
## 488 asymmetric 50 1 13
## 489 asymmetric 51 1 13
## 490 asymmetric 52 1 13
## 491 asymmetric 53 1 13
## 492 asymmetric 54 1 13
## 493 asymmetric 67 1 13
## 494 asymmetric 68 1 13
## 495 asymmetric 69 1 13
## 496 asymmetric 70 1 13
## 497 asymmetric 71 1 13
## 498 asymmetric 72 1 13
## 499 asymmetric 73 1 13
## 500 asymmetric 74 1 13
## 501 asymmetric 77 1 13
## 502 asymmetric 78 1 13
## 503 asymmetric 79 1 13
## 504 asymmetric 80 1 13
## 505 asymmetric 41 1 13
## 506 asymmetric 42 1 13
## 507 asymmetric 43 1 13
## 508 asymmetric 44 1 13
## 509 asymmetric 47 1 13
## 510 asymmetric 48 1 13
## 511 asymmetric 49 1 13
## 512 asymmetric 50 1 13
## 513 asymmetric 51 1 13
## 514 asymmetric 52 1 13
## 515 asymmetric 53 1 13
## 516 asymmetric 54 1 13
## 517 asymmetric 67 1 13
## 518 asymmetric 68 1 13
## 519 asymmetric 69 1 13
## 520 asymmetric 70 1 13
## 521 asymmetric 71 1 13
## 522 asymmetric 72 1 13
## 523 asymmetric 73 1 13
## 524 asymmetric 74 1 13
## 525 asymmetric 77 1 13
## 526 asymmetric 78 1 13
## 527 asymmetric 79 1 13
## 528 asymmetric 80 1 13
## 529 asymmetric 41 1 13
## 530 asymmetric 42 1 13
## 531 asymmetric 43 1 13
## 532 asymmetric 44 1 13
## 533 asymmetric 47 1 13
## 534 asymmetric 48 1 13
## 535 asymmetric 49 1 13
## 536 asymmetric 50 1 13
## 537 asymmetric 51 1 13
## 538 asymmetric 52 1 13
## 539 asymmetric 53 1 13
## 540 asymmetric 54 1 13
## 541 asymmetric 67 1 13
## 542 asymmetric 68 1 13
## 543 asymmetric 69 1 13
## 544 asymmetric 70 1 13
## 545 asymmetric 71 1 13
## 546 asymmetric 72 1 13
## 547 asymmetric 73 1 13
## 548 asymmetric 74 1 13
## 549 asymmetric 77 1 13
## 550 asymmetric 78 1 13
## 551 asymmetric 79 1 13
## 552 asymmetric 80 1 13
## 553 asymmetric 41 1 13
## 554 asymmetric 42 1 13
## 555 asymmetric 43 1 13
## 556 asymmetric 44 1 13
## 557 asymmetric 47 1 13
## 558 asymmetric 48 1 13
## 559 asymmetric 49 1 13
## 560 asymmetric 50 1 13
## 561 asymmetric 51 1 13
## 562 asymmetric 52 1 13
## 563 asymmetric 53 1 13
## 564 asymmetric 54 1 13
## 565 asymmetric 67 1 13
## 566 asymmetric 68 1 13
## 567 asymmetric 69 1 13
## 568 asymmetric 70 1 13
## 569 asymmetric 71 1 13
## 570 asymmetric 72 1 13
## 571 asymmetric 73 1 13
## 572 asymmetric 74 1 13
## 573 asymmetric 77 1 13
## 574 asymmetric 78 1 13
## 575 asymmetric 79 1 13
## 576 asymmetric 80 1 13
## 577 asymmetric 17 1 14
## 578 asymmetric 18 1 14
## 579 asymmetric 19 1 14
## 580 asymmetric 20 1 14
## 581 asymmetric 21 1 14
## 582 asymmetric 22 1 14
## 583 asymmetric 23 1 14
## 584 asymmetric 24 1 14
## 585 asymmetric 57 1 14
## 586 asymmetric 58 1 14
## 587 asymmetric 59 1 14
## 588 asymmetric 60 1 14
## 589 asymmetric 61 1 14
## 590 asymmetric 62 1 14
## 591 asymmetric 63 1 14
## 592 asymmetric 64 1 14
## 593 asymmetric 97 1 14
## 594 asymmetric 98 1 14
## 595 asymmetric 99 1 14
## 596 asymmetric 100 1 14
## 597 asymmetric 101 1 14
## 598 asymmetric 102 1 14
## 599 asymmetric 103 1 14
## 600 asymmetric 104 1 14
## 601 asymmetric 17 1 14
## 602 asymmetric 18 1 14
## 603 asymmetric 19 1 14
## 604 asymmetric 20 1 14
## 605 asymmetric 21 1 14
## 606 asymmetric 22 1 14
## 607 asymmetric 23 1 14
## 608 asymmetric 24 1 14
## 609 asymmetric 57 1 14
## 610 asymmetric 58 1 14
## 611 asymmetric 59 1 14
## 612 asymmetric 60 1 14
## 613 asymmetric 61 1 14
## 614 asymmetric 62 1 14
## 615 asymmetric 63 1 14
## 616 asymmetric 64 1 14
## 617 asymmetric 97 1 14
## 618 asymmetric 98 1 14
## 619 asymmetric 99 1 14
## 620 asymmetric 100 1 14
## 621 asymmetric 101 1 14
## 622 asymmetric 102 1 14
## 623 asymmetric 103 1 14
## 624 asymmetric 104 1 14
## 625 asymmetric 17 1 14
## 626 asymmetric 18 1 14
## 627 asymmetric 19 1 14
## 628 asymmetric 20 1 14
## 629 asymmetric 21 1 14
## 630 asymmetric 22 1 14
## 631 asymmetric 23 1 14
## 632 asymmetric 24 1 14
## 633 asymmetric 57 1 14
## 634 asymmetric 58 1 14
## 635 asymmetric 59 1 14
## 636 asymmetric 60 1 14
## 637 asymmetric 61 1 14
## 638 asymmetric 62 1 14
## 639 asymmetric 63 1 14
## 640 asymmetric 64 1 14
## 641 asymmetric 97 1 14
## 642 asymmetric 98 1 14
## 643 asymmetric 99 1 14
## 644 asymmetric 100 1 14
## 645 asymmetric 101 1 14
## 646 asymmetric 102 1 14
## 647 asymmetric 103 1 14
## 648 asymmetric 104 1 14
## 649 asymmetric 17 1 14
## 650 asymmetric 18 1 14
## 651 asymmetric 19 1 14
## 652 asymmetric 20 1 14
## 653 asymmetric 21 1 14
## 654 asymmetric 22 1 14
## 655 asymmetric 23 1 14
## 656 asymmetric 24 1 14
## 657 asymmetric 57 1 14
## 658 asymmetric 58 1 14
## 659 asymmetric 59 1 14
## 660 asymmetric 60 1 14
## 661 asymmetric 61 1 14
## 662 asymmetric 62 1 14
## 663 asymmetric 63 1 14
## 664 asymmetric 64 1 14
## 665 asymmetric 97 1 14
## 666 asymmetric 98 1 14
## 667 asymmetric 99 1 14
## 668 asymmetric 100 1 14
## 669 asymmetric 101 1 14
## 670 asymmetric 102 1 14
## 671 asymmetric 103 1 14
## 672 asymmetric 104 1 14
## 673 asymmetric 17 1 14
## 674 asymmetric 18 1 14
## 675 asymmetric 19 1 14
## 676 asymmetric 20 1 14
## 677 asymmetric 21 1 14
## 678 asymmetric 22 1 14
## 679 asymmetric 23 1 14
## 680 asymmetric 24 1 14
## 681 asymmetric 57 1 14
## 682 asymmetric 58 1 14
## 683 asymmetric 59 1 14
## 684 asymmetric 60 1 14
## 685 asymmetric 61 1 14
## 686 asymmetric 62 1 14
## 687 asymmetric 63 1 14
## 688 asymmetric 64 1 14
## 689 asymmetric 97 1 14
## 690 asymmetric 98 1 14
## 691 asymmetric 99 1 14
## 692 asymmetric 100 1 14
## 693 asymmetric 101 1 14
## 694 asymmetric 102 1 14
## 695 asymmetric 103 1 14
## 696 asymmetric 104 1 14
## 697 asymmetric 17 1 14
## 698 asymmetric 18 1 14
## 699 asymmetric 19 1 14
## 700 asymmetric 20 1 14
## 701 asymmetric 21 1 14
## 702 asymmetric 22 1 14
## 703 asymmetric 23 1 14
## 704 asymmetric 24 1 14
## 705 asymmetric 57 1 14
## 706 asymmetric 58 1 14
## 707 asymmetric 59 1 14
## 708 asymmetric 60 1 14
## 709 asymmetric 61 1 14
## 710 asymmetric 62 1 14
## 711 asymmetric 63 1 14
## 712 asymmetric 64 1 14
## 713 asymmetric 97 1 14
## 714 asymmetric 98 1 14
## 715 asymmetric 99 1 14
## 716 asymmetric 100 1 14
## 717 asymmetric 101 1 14
## 718 asymmetric 102 1 14
## 719 asymmetric 103 1 14
## 720 asymmetric 104 1 14
## 721 asymmetric 17 1 14
## 722 asymmetric 18 1 14
## 723 asymmetric 19 1 14
## 724 asymmetric 20 1 14
## 725 asymmetric 21 1 14
## 726 asymmetric 22 1 14
## 727 asymmetric 23 1 14
## 728 asymmetric 24 1 14
## 729 asymmetric 57 1 14
## 730 asymmetric 58 1 14
## 731 asymmetric 59 1 14
## 732 asymmetric 60 1 14
## 733 asymmetric 61 1 14
## 734 asymmetric 62 1 14
## 735 asymmetric 63 1 14
## 736 asymmetric 64 1 14
## 737 asymmetric 97 1 14
## 738 asymmetric 98 1 14
## 739 asymmetric 99 1 14
## 740 asymmetric 100 1 14
## 741 asymmetric 101 1 14
## 742 asymmetric 102 1 14
## 743 asymmetric 103 1 14
## 744 asymmetric 104 1 14
## 745 asymmetric 17 1 14
## 746 asymmetric 18 1 14
## 747 asymmetric 19 1 14
## 748 asymmetric 20 1 14
## 749 asymmetric 21 1 14
## 750 asymmetric 22 1 14
## 751 asymmetric 23 1 14
## 752 asymmetric 24 1 14
## 753 asymmetric 57 1 14
## 754 asymmetric 58 1 14
## 755 asymmetric 59 1 14
## 756 asymmetric 60 1 14
## 757 asymmetric 61 1 14
## 758 asymmetric 62 1 14
## 759 asymmetric 63 1 14
## 760 asymmetric 64 1 14
## 761 asymmetric 97 1 14
## 762 asymmetric 98 1 14
## 763 asymmetric 99 1 14
## 764 asymmetric 100 1 14
## 765 asymmetric 101 1 14
## 766 asymmetric 102 1 14
## 767 asymmetric 103 1 14
## 768 asymmetric 104 1 14
## 769 asymmetric 5 1 15
## 770 asymmetric 6 1 15
## 771 asymmetric 15 1 15
## 772 asymmetric 16 1 15
## 773 asymmetric 25 1 15
## 774 asymmetric 26 1 15
## 775 asymmetric 35 1 15
## 776 asymmetric 36 1 15
## 777 asymmetric 45 1 15
## 778 asymmetric 46 1 15
## 779 asymmetric 55 1 15
## 780 asymmetric 56 1 15
## 781 asymmetric 65 1 15
## 782 asymmetric 66 1 15
## 783 asymmetric 75 1 15
## 784 asymmetric 76 1 15
## 785 asymmetric 85 1 15
## 786 asymmetric 86 1 15
## 787 asymmetric 95 1 15
## 788 asymmetric 96 1 15
## 789 asymmetric 105 1 15
## 790 asymmetric 106 1 15
## 791 asymmetric 115 1 15
## 792 asymmetric 116 1 15
## 793 asymmetric 5 1 15
## 794 asymmetric 6 1 15
## 795 asymmetric 15 1 15
## 796 asymmetric 16 1 15
## 797 asymmetric 25 1 15
## 798 asymmetric 26 1 15
## 799 asymmetric 35 1 15
## 800 asymmetric 36 1 15
## 801 asymmetric 45 1 15
## 802 asymmetric 46 1 15
## 803 asymmetric 55 1 15
## 804 asymmetric 56 1 15
## 805 asymmetric 65 1 15
## 806 asymmetric 66 1 15
## 807 asymmetric 75 1 15
## 808 asymmetric 76 1 15
## 809 asymmetric 85 1 15
## 810 asymmetric 86 1 15
## 811 asymmetric 95 1 15
## 812 asymmetric 96 1 15
## 813 asymmetric 105 1 15
## 814 asymmetric 106 1 15
## 815 asymmetric 115 1 15
## 816 asymmetric 116 1 15
## 817 asymmetric 5 1 15
## 818 asymmetric 6 1 15
## 819 asymmetric 15 1 15
## 820 asymmetric 16 1 15
## 821 asymmetric 25 1 15
## 822 asymmetric 26 1 15
## 823 asymmetric 35 1 15
## 824 asymmetric 36 1 15
## 825 asymmetric 45 1 15
## 826 asymmetric 46 1 15
## 827 asymmetric 55 1 15
## 828 asymmetric 56 1 15
## 829 asymmetric 65 1 15
## 830 asymmetric 66 1 15
## 831 asymmetric 75 1 15
## 832 asymmetric 76 1 15
## 833 asymmetric 85 1 15
## 834 asymmetric 86 1 15
## 835 asymmetric 95 1 15
## 836 asymmetric 96 1 15
## 837 asymmetric 105 1 15
## 838 asymmetric 106 1 15
## 839 asymmetric 115 1 15
## 840 asymmetric 116 1 15
## 841 asymmetric 5 1 15
## 842 asymmetric 6 1 15
## 843 asymmetric 15 1 15
## 844 asymmetric 16 1 15
## 845 asymmetric 25 1 15
## 846 asymmetric 26 1 15
## 847 asymmetric 35 1 15
## 848 asymmetric 36 1 15
## 849 asymmetric 45 1 15
## 850 asymmetric 46 1 15
## 851 asymmetric 55 1 15
## 852 asymmetric 56 1 15
## 853 asymmetric 65 1 15
## 854 asymmetric 66 1 15
## 855 asymmetric 75 1 15
## 856 asymmetric 76 1 15
## 857 asymmetric 85 1 15
## 858 asymmetric 86 1 15
## 859 asymmetric 95 1 15
## 860 asymmetric 96 1 15
## 861 asymmetric 105 1 15
## 862 asymmetric 106 1 15
## 863 asymmetric 115 1 15
## 864 asymmetric 116 1 15
## 865 asymmetric 5 1 15
## 866 asymmetric 6 1 15
## 867 asymmetric 15 1 15
## 868 asymmetric 16 1 15
## 869 asymmetric 25 1 15
## 870 asymmetric 26 1 15
## 871 asymmetric 35 1 15
## 872 asymmetric 36 1 15
## 873 asymmetric 45 1 15
## 874 asymmetric 46 1 15
## 875 asymmetric 55 1 15
## 876 asymmetric 56 1 15
## 877 asymmetric 65 1 15
## 878 asymmetric 66 1 15
## 879 asymmetric 75 1 15
## 880 asymmetric 76 1 15
## 881 asymmetric 85 1 15
## 882 asymmetric 86 1 15
## 883 asymmetric 95 1 15
## 884 asymmetric 96 1 15
## 885 asymmetric 105 1 15
## 886 asymmetric 106 1 15
## 887 asymmetric 115 1 15
## 888 asymmetric 116 1 15
## 889 asymmetric 5 1 15
## 890 asymmetric 6 1 15
## 891 asymmetric 15 1 15
## 892 asymmetric 16 1 15
## 893 asymmetric 25 1 15
## 894 asymmetric 26 1 15
## 895 asymmetric 35 1 15
## 896 asymmetric 36 1 15
## 897 asymmetric 45 1 15
## 898 asymmetric 46 1 15
## 899 asymmetric 55 1 15
## 900 asymmetric 56 1 15
## 901 asymmetric 65 1 15
## 902 asymmetric 66 1 15
## 903 asymmetric 75 1 15
## 904 asymmetric 76 1 15
## 905 asymmetric 85 1 15
## 906 asymmetric 86 1 15
## 907 asymmetric 95 1 15
## 908 asymmetric 96 1 15
## 909 asymmetric 105 1 15
## 910 asymmetric 106 1 15
## 911 asymmetric 115 1 15
## 912 asymmetric 116 1 15
## 913 asymmetric 5 1 15
## 914 asymmetric 6 1 15
## 915 asymmetric 15 1 15
## 916 asymmetric 16 1 15
## 917 asymmetric 25 1 15
## 918 asymmetric 26 1 15
## 919 asymmetric 35 1 15
## 920 asymmetric 36 1 15
## 921 asymmetric 45 1 15
## 922 asymmetric 46 1 15
## 923 asymmetric 55 1 15
## 924 asymmetric 56 1 15
## 925 asymmetric 65 1 15
## 926 asymmetric 66 1 15
## 927 asymmetric 75 1 15
## 928 asymmetric 76 1 15
## 929 asymmetric 85 1 15
## 930 asymmetric 86 1 15
## 931 asymmetric 95 1 15
## 932 asymmetric 96 1 15
## 933 asymmetric 105 1 15
## 934 asymmetric 106 1 15
## 935 asymmetric 115 1 15
## 936 asymmetric 116 1 15
## 937 asymmetric 5 1 15
## 938 asymmetric 6 1 15
## 939 asymmetric 15 1 15
## 940 asymmetric 16 1 15
## 941 asymmetric 25 1 15
## 942 asymmetric 26 1 15
## 943 asymmetric 35 1 15
## 944 asymmetric 36 1 15
## 945 asymmetric 45 1 15
## 946 asymmetric 46 1 15
## 947 asymmetric 55 1 15
## 948 asymmetric 56 1 15
## 949 asymmetric 65 1 15
## 950 asymmetric 66 1 15
## 951 asymmetric 75 1 15
## 952 asymmetric 76 1 15
## 953 asymmetric 85 1 15
## 954 asymmetric 86 1 15
## 955 asymmetric 95 1 15
## 956 asymmetric 96 1 15
## 957 asymmetric 105 1 15
## 958 asymmetric 106 1 15
## 959 asymmetric 115 1 15
## 960 asymmetric 116 1 15
## 961 asymmetric 5 2 11
## 962 asymmetric 6 2 11
## 963 asymmetric 15 2 11
## 964 asymmetric 18 2 11
## 965 asymmetric 19 2 11
## 966 asymmetric 20 2 11
## 967 asymmetric 21 2 11
## 968 asymmetric 22 2 11
## 969 asymmetric 23 2 11
## 970 asymmetric 26 2 11
## 971 asymmetric 35 2 11
## 972 asymmetric 36 2 11
## 973 asymmetric 41 2 11
## 974 asymmetric 42 2 11
## 975 asymmetric 43 2 11
## 976 asymmetric 48 2 11
## 977 asymmetric 49 2 11
## 978 asymmetric 50 2 11
## 979 asymmetric 111 2 11
## 980 asymmetric 112 2 11
## 981 asymmetric 113 2 11
## 982 asymmetric 118 2 11
## 983 asymmetric 119 2 11
## 984 asymmetric 120 2 11
## 985 asymmetric 5 2 11
## 986 asymmetric 6 2 11
## 987 asymmetric 15 2 11
## 988 asymmetric 18 2 11
## 989 asymmetric 19 2 11
## 990 asymmetric 20 2 11
## 991 asymmetric 21 2 11
## 992 asymmetric 22 2 11
## 993 asymmetric 23 2 11
## 994 asymmetric 26 2 11
## 995 asymmetric 35 2 11
## 996 asymmetric 36 2 11
## 997 asymmetric 41 2 11
## 998 asymmetric 42 2 11
## 999 asymmetric 43 2 11
## 1000 asymmetric 48 2 11
## 1001 asymmetric 49 2 11
## 1002 asymmetric 50 2 11
## 1003 asymmetric 111 2 11
## 1004 asymmetric 112 2 11
## 1005 asymmetric 113 2 11
## 1006 asymmetric 118 2 11
## 1007 asymmetric 119 2 11
## 1008 asymmetric 120 2 11
## 1009 asymmetric 5 2 11
## 1010 asymmetric 6 2 11
## 1011 asymmetric 15 2 11
## 1012 asymmetric 18 2 11
## 1013 asymmetric 19 2 11
## 1014 asymmetric 20 2 11
## 1015 asymmetric 21 2 11
## 1016 asymmetric 22 2 11
## 1017 asymmetric 23 2 11
## 1018 asymmetric 26 2 11
## 1019 asymmetric 35 2 11
## 1020 asymmetric 36 2 11
## 1021 asymmetric 41 2 11
## 1022 asymmetric 42 2 11
## 1023 asymmetric 43 2 11
## 1024 asymmetric 48 2 11
## 1025 asymmetric 49 2 11
## 1026 asymmetric 50 2 11
## 1027 asymmetric 111 2 11
## 1028 asymmetric 112 2 11
## 1029 asymmetric 113 2 11
## 1030 asymmetric 118 2 11
## 1031 asymmetric 119 2 11
## 1032 asymmetric 120 2 11
## 1033 asymmetric 5 2 11
## 1034 asymmetric 6 2 11
## 1035 asymmetric 15 2 11
## 1036 asymmetric 18 2 11
## 1037 asymmetric 19 2 11
## 1038 asymmetric 20 2 11
## 1039 asymmetric 21 2 11
## 1040 asymmetric 22 2 11
## 1041 asymmetric 23 2 11
## 1042 asymmetric 26 2 11
## 1043 asymmetric 35 2 11
## 1044 asymmetric 36 2 11
## 1045 asymmetric 41 2 11
## 1046 asymmetric 42 2 11
## 1047 asymmetric 43 2 11
## 1048 asymmetric 48 2 11
## 1049 asymmetric 49 2 11
## 1050 asymmetric 50 2 11
## 1051 asymmetric 111 2 11
## 1052 asymmetric 112 2 11
## 1053 asymmetric 113 2 11
## 1054 asymmetric 118 2 11
## 1055 asymmetric 119 2 11
## 1056 asymmetric 120 2 11
## 1057 asymmetric 5 2 11
## 1058 asymmetric 6 2 11
## 1059 asymmetric 15 2 11
## 1060 asymmetric 18 2 11
## 1061 asymmetric 19 2 11
## 1062 asymmetric 20 2 11
## 1063 asymmetric 21 2 11
## 1064 asymmetric 22 2 11
## 1065 asymmetric 23 2 11
## 1066 asymmetric 26 2 11
## 1067 asymmetric 35 2 11
## 1068 asymmetric 36 2 11
## 1069 asymmetric 41 2 11
## 1070 asymmetric 42 2 11
## 1071 asymmetric 43 2 11
## 1072 asymmetric 48 2 11
## 1073 asymmetric 49 2 11
## 1074 asymmetric 50 2 11
## 1075 asymmetric 111 2 11
## 1076 asymmetric 112 2 11
## 1077 asymmetric 113 2 11
## 1078 asymmetric 118 2 11
## 1079 asymmetric 119 2 11
## 1080 asymmetric 120 2 11
## 1081 asymmetric 5 2 11
## 1082 asymmetric 6 2 11
## 1083 asymmetric 15 2 11
## 1084 asymmetric 18 2 11
## 1085 asymmetric 19 2 11
## 1086 asymmetric 20 2 11
## 1087 asymmetric 21 2 11
## 1088 asymmetric 22 2 11
## 1089 asymmetric 23 2 11
## 1090 asymmetric 26 2 11
## 1091 asymmetric 35 2 11
## 1092 asymmetric 36 2 11
## 1093 asymmetric 41 2 11
## 1094 asymmetric 42 2 11
## 1095 asymmetric 43 2 11
## 1096 asymmetric 48 2 11
## 1097 asymmetric 49 2 11
## 1098 asymmetric 50 2 11
## 1099 asymmetric 111 2 11
## 1100 asymmetric 112 2 11
## 1101 asymmetric 113 2 11
## 1102 asymmetric 118 2 11
## 1103 asymmetric 119 2 11
## 1104 asymmetric 120 2 11
## 1105 asymmetric 5 2 11
## 1106 asymmetric 6 2 11
## 1107 asymmetric 15 2 11
## 1108 asymmetric 18 2 11
## 1109 asymmetric 19 2 11
## 1110 asymmetric 20 2 11
## 1111 asymmetric 21 2 11
## 1112 asymmetric 22 2 11
## 1113 asymmetric 23 2 11
## 1114 asymmetric 26 2 11
## 1115 asymmetric 35 2 11
## 1116 asymmetric 36 2 11
## 1117 asymmetric 41 2 11
## 1118 asymmetric 42 2 11
## 1119 asymmetric 43 2 11
## 1120 asymmetric 48 2 11
## 1121 asymmetric 49 2 11
## 1122 asymmetric 50 2 11
## 1123 asymmetric 111 2 11
## 1124 asymmetric 112 2 11
## 1125 asymmetric 113 2 11
## 1126 asymmetric 118 2 11
## 1127 asymmetric 119 2 11
## 1128 asymmetric 120 2 11
## 1129 asymmetric 5 2 11
## 1130 asymmetric 6 2 11
## 1131 asymmetric 15 2 11
## 1132 asymmetric 18 2 11
## 1133 asymmetric 19 2 11
## 1134 asymmetric 20 2 11
## 1135 asymmetric 21 2 11
## 1136 asymmetric 22 2 11
## 1137 asymmetric 23 2 11
## 1138 asymmetric 26 2 11
## 1139 asymmetric 35 2 11
## 1140 asymmetric 36 2 11
## 1141 asymmetric 41 2 11
## 1142 asymmetric 42 2 11
## 1143 asymmetric 43 2 11
## 1144 asymmetric 48 2 11
## 1145 asymmetric 49 2 11
## 1146 asymmetric 50 2 11
## 1147 asymmetric 111 2 11
## 1148 asymmetric 112 2 11
## 1149 asymmetric 113 2 11
## 1150 asymmetric 118 2 11
## 1151 asymmetric 119 2 11
## 1152 asymmetric 120 2 11
## 1153 asymmetric 1 2 12
## 1154 asymmetric 2 2 12
## 1155 asymmetric 3 2 12
## 1156 asymmetric 8 2 12
## 1157 asymmetric 9 2 12
## 1158 asymmetric 10 2 12
## 1159 asymmetric 71 2 12
## 1160 asymmetric 72 2 12
## 1161 asymmetric 73 2 12
## 1162 asymmetric 78 2 12
## 1163 asymmetric 79 2 12
## 1164 asymmetric 80 2 12
## 1165 asymmetric 85 2 12
## 1166 asymmetric 86 2 12
## 1167 asymmetric 95 2 12
## 1168 asymmetric 98 2 12
## 1169 asymmetric 99 2 12
## 1170 asymmetric 100 2 12
## 1171 asymmetric 101 2 12
## 1172 asymmetric 102 2 12
## 1173 asymmetric 103 2 12
## 1174 asymmetric 106 2 12
## 1175 asymmetric 115 2 12
## 1176 asymmetric 116 2 12
## 1177 asymmetric 1 2 12
## 1178 asymmetric 2 2 12
## 1179 asymmetric 3 2 12
## 1180 asymmetric 8 2 12
## 1181 asymmetric 9 2 12
## 1182 asymmetric 10 2 12
## 1183 asymmetric 71 2 12
## 1184 asymmetric 72 2 12
## 1185 asymmetric 73 2 12
## 1186 asymmetric 78 2 12
## 1187 asymmetric 79 2 12
## 1188 asymmetric 80 2 12
## 1189 asymmetric 85 2 12
## 1190 asymmetric 86 2 12
## 1191 asymmetric 95 2 12
## 1192 asymmetric 98 2 12
## 1193 asymmetric 99 2 12
## 1194 asymmetric 100 2 12
## 1195 asymmetric 101 2 12
## 1196 asymmetric 102 2 12
## 1197 asymmetric 103 2 12
## 1198 asymmetric 106 2 12
## 1199 asymmetric 115 2 12
## 1200 asymmetric 116 2 12
## 1201 asymmetric 1 2 12
## 1202 asymmetric 2 2 12
## 1203 asymmetric 3 2 12
## 1204 asymmetric 8 2 12
## 1205 asymmetric 9 2 12
## 1206 asymmetric 10 2 12
## 1207 asymmetric 71 2 12
## 1208 asymmetric 72 2 12
## 1209 asymmetric 73 2 12
## 1210 asymmetric 78 2 12
## 1211 asymmetric 79 2 12
## 1212 asymmetric 80 2 12
## 1213 asymmetric 85 2 12
## 1214 asymmetric 86 2 12
## 1215 asymmetric 95 2 12
## 1216 asymmetric 98 2 12
## 1217 asymmetric 99 2 12
## 1218 asymmetric 100 2 12
## 1219 asymmetric 101 2 12
## 1220 asymmetric 102 2 12
## 1221 asymmetric 103 2 12
## 1222 asymmetric 106 2 12
## 1223 asymmetric 115 2 12
## 1224 asymmetric 116 2 12
## 1225 asymmetric 1 2 12
## 1226 asymmetric 2 2 12
## 1227 asymmetric 3 2 12
## 1228 asymmetric 8 2 12
## 1229 asymmetric 9 2 12
## 1230 asymmetric 10 2 12
## 1231 asymmetric 71 2 12
## 1232 asymmetric 72 2 12
## 1233 asymmetric 73 2 12
## 1234 asymmetric 78 2 12
## 1235 asymmetric 79 2 12
## 1236 asymmetric 80 2 12
## 1237 asymmetric 85 2 12
## 1238 asymmetric 86 2 12
## 1239 asymmetric 95 2 12
## 1240 asymmetric 98 2 12
## 1241 asymmetric 99 2 12
## 1242 asymmetric 100 2 12
## 1243 asymmetric 101 2 12
## 1244 asymmetric 102 2 12
## 1245 asymmetric 103 2 12
## 1246 asymmetric 106 2 12
## 1247 asymmetric 115 2 12
## 1248 asymmetric 116 2 12
## 1249 asymmetric 1 2 12
## 1250 asymmetric 2 2 12
## 1251 asymmetric 3 2 12
## 1252 asymmetric 8 2 12
## 1253 asymmetric 9 2 12
## 1254 asymmetric 10 2 12
## 1255 asymmetric 71 2 12
## 1256 asymmetric 72 2 12
## 1257 asymmetric 73 2 12
## 1258 asymmetric 78 2 12
## 1259 asymmetric 79 2 12
## 1260 asymmetric 80 2 12
## 1261 asymmetric 85 2 12
## 1262 asymmetric 86 2 12
## 1263 asymmetric 95 2 12
## 1264 asymmetric 98 2 12
## 1265 asymmetric 99 2 12
## 1266 asymmetric 100 2 12
## 1267 asymmetric 101 2 12
## 1268 asymmetric 102 2 12
## 1269 asymmetric 103 2 12
## 1270 asymmetric 106 2 12
## 1271 asymmetric 115 2 12
## 1272 asymmetric 116 2 12
## 1273 asymmetric 1 2 12
## 1274 asymmetric 2 2 12
## 1275 asymmetric 3 2 12
## 1276 asymmetric 8 2 12
## 1277 asymmetric 9 2 12
## 1278 asymmetric 10 2 12
## 1279 asymmetric 71 2 12
## 1280 asymmetric 72 2 12
## 1281 asymmetric 73 2 12
## 1282 asymmetric 78 2 12
## 1283 asymmetric 79 2 12
## 1284 asymmetric 80 2 12
## 1285 asymmetric 85 2 12
## 1286 asymmetric 86 2 12
## 1287 asymmetric 95 2 12
## 1288 asymmetric 98 2 12
## 1289 asymmetric 99 2 12
## 1290 asymmetric 100 2 12
## 1291 asymmetric 101 2 12
## 1292 asymmetric 102 2 12
## 1293 asymmetric 103 2 12
## 1294 asymmetric 106 2 12
## 1295 asymmetric 115 2 12
## 1296 asymmetric 116 2 12
## 1297 asymmetric 1 2 12
## 1298 asymmetric 2 2 12
## 1299 asymmetric 3 2 12
## 1300 asymmetric 8 2 12
## 1301 asymmetric 9 2 12
## 1302 asymmetric 10 2 12
## 1303 asymmetric 71 2 12
## 1304 asymmetric 72 2 12
## 1305 asymmetric 73 2 12
## 1306 asymmetric 78 2 12
## 1307 asymmetric 79 2 12
## 1308 asymmetric 80 2 12
## 1309 asymmetric 85 2 12
## 1310 asymmetric 86 2 12
## 1311 asymmetric 95 2 12
## 1312 asymmetric 98 2 12
## 1313 asymmetric 99 2 12
## 1314 asymmetric 100 2 12
## 1315 asymmetric 101 2 12
## 1316 asymmetric 102 2 12
## 1317 asymmetric 103 2 12
## 1318 asymmetric 106 2 12
## 1319 asymmetric 115 2 12
## 1320 asymmetric 116 2 12
## 1321 asymmetric 1 2 12
## 1322 asymmetric 2 2 12
## 1323 asymmetric 3 2 12
## 1324 asymmetric 8 2 12
## 1325 asymmetric 9 2 12
## 1326 asymmetric 10 2 12
## 1327 asymmetric 71 2 12
## 1328 asymmetric 72 2 12
## 1329 asymmetric 73 2 12
## 1330 asymmetric 78 2 12
## 1331 asymmetric 79 2 12
## 1332 asymmetric 80 2 12
## 1333 asymmetric 85 2 12
## 1334 asymmetric 86 2 12
## 1335 asymmetric 95 2 12
## 1336 asymmetric 98 2 12
## 1337 asymmetric 99 2 12
## 1338 asymmetric 100 2 12
## 1339 asymmetric 101 2 12
## 1340 asymmetric 102 2 12
## 1341 asymmetric 103 2 12
## 1342 asymmetric 106 2 12
## 1343 asymmetric 115 2 12
## 1344 asymmetric 116 2 12
## 1345 asymmetric 31 2 13
## 1346 asymmetric 32 2 13
## 1347 asymmetric 33 2 13
## 1348 asymmetric 38 2 13
## 1349 asymmetric 39 2 13
## 1350 asymmetric 40 2 13
## 1351 asymmetric 45 2 13
## 1352 asymmetric 46 2 13
## 1353 asymmetric 55 2 13
## 1354 asymmetric 58 2 13
## 1355 asymmetric 59 2 13
## 1356 asymmetric 60 2 13
## 1357 asymmetric 61 2 13
## 1358 asymmetric 62 2 13
## 1359 asymmetric 63 2 13
## 1360 asymmetric 66 2 13
## 1361 asymmetric 75 2 13
## 1362 asymmetric 76 2 13
## 1363 asymmetric 81 2 13
## 1364 asymmetric 82 2 13
## 1365 asymmetric 83 2 13
## 1366 asymmetric 88 2 13
## 1367 asymmetric 89 2 13
## 1368 asymmetric 90 2 13
## 1369 asymmetric 31 2 13
## 1370 asymmetric 32 2 13
## 1371 asymmetric 33 2 13
## 1372 asymmetric 38 2 13
## 1373 asymmetric 39 2 13
## 1374 asymmetric 40 2 13
## 1375 asymmetric 45 2 13
## 1376 asymmetric 46 2 13
## 1377 asymmetric 55 2 13
## 1378 asymmetric 58 2 13
## 1379 asymmetric 59 2 13
## 1380 asymmetric 60 2 13
## 1381 asymmetric 61 2 13
## 1382 asymmetric 62 2 13
## 1383 asymmetric 63 2 13
## 1384 asymmetric 66 2 13
## 1385 asymmetric 75 2 13
## 1386 asymmetric 76 2 13
## 1387 asymmetric 81 2 13
## 1388 asymmetric 82 2 13
## 1389 asymmetric 83 2 13
## 1390 asymmetric 88 2 13
## 1391 asymmetric 89 2 13
## 1392 asymmetric 90 2 13
## 1393 asymmetric 31 2 13
## 1394 asymmetric 32 2 13
## 1395 asymmetric 33 2 13
## 1396 asymmetric 38 2 13
## 1397 asymmetric 39 2 13
## 1398 asymmetric 40 2 13
## 1399 asymmetric 45 2 13
## 1400 asymmetric 46 2 13
## 1401 asymmetric 55 2 13
## 1402 asymmetric 58 2 13
## 1403 asymmetric 59 2 13
## 1404 asymmetric 60 2 13
## 1405 asymmetric 61 2 13
## 1406 asymmetric 62 2 13
## 1407 asymmetric 63 2 13
## 1408 asymmetric 66 2 13
## 1409 asymmetric 75 2 13
## 1410 asymmetric 76 2 13
## 1411 asymmetric 81 2 13
## 1412 asymmetric 82 2 13
## 1413 asymmetric 83 2 13
## 1414 asymmetric 88 2 13
## 1415 asymmetric 89 2 13
## 1416 asymmetric 90 2 13
## 1417 asymmetric 31 2 13
## 1418 asymmetric 32 2 13
## 1419 asymmetric 33 2 13
## 1420 asymmetric 38 2 13
## 1421 asymmetric 39 2 13
## 1422 asymmetric 40 2 13
## 1423 asymmetric 45 2 13
## 1424 asymmetric 46 2 13
## 1425 asymmetric 55 2 13
## 1426 asymmetric 58 2 13
## 1427 asymmetric 59 2 13
## 1428 asymmetric 60 2 13
## 1429 asymmetric 61 2 13
## 1430 asymmetric 62 2 13
## 1431 asymmetric 63 2 13
## 1432 asymmetric 66 2 13
## 1433 asymmetric 75 2 13
## 1434 asymmetric 76 2 13
## 1435 asymmetric 81 2 13
## 1436 asymmetric 82 2 13
## 1437 asymmetric 83 2 13
## 1438 asymmetric 88 2 13
## 1439 asymmetric 89 2 13
## 1440 asymmetric 90 2 13
## 1441 asymmetric 31 2 13
## 1442 asymmetric 32 2 13
## 1443 asymmetric 33 2 13
## 1444 asymmetric 38 2 13
## 1445 asymmetric 39 2 13
## 1446 asymmetric 40 2 13
## 1447 asymmetric 45 2 13
## 1448 asymmetric 46 2 13
## 1449 asymmetric 55 2 13
## 1450 asymmetric 58 2 13
## 1451 asymmetric 59 2 13
## 1452 asymmetric 60 2 13
## 1453 asymmetric 61 2 13
## 1454 asymmetric 62 2 13
## 1455 asymmetric 63 2 13
## 1456 asymmetric 66 2 13
## 1457 asymmetric 75 2 13
## 1458 asymmetric 76 2 13
## 1459 asymmetric 81 2 13
## 1460 asymmetric 82 2 13
## 1461 asymmetric 83 2 13
## 1462 asymmetric 88 2 13
## 1463 asymmetric 89 2 13
## 1464 asymmetric 90 2 13
## 1465 asymmetric 31 2 13
## 1466 asymmetric 32 2 13
## 1467 asymmetric 33 2 13
## 1468 asymmetric 38 2 13
## 1469 asymmetric 39 2 13
## 1470 asymmetric 40 2 13
## 1471 asymmetric 45 2 13
## 1472 asymmetric 46 2 13
## 1473 asymmetric 55 2 13
## 1474 asymmetric 58 2 13
## 1475 asymmetric 59 2 13
## 1476 asymmetric 60 2 13
## 1477 asymmetric 61 2 13
## 1478 asymmetric 62 2 13
## 1479 asymmetric 63 2 13
## 1480 asymmetric 66 2 13
## 1481 asymmetric 75 2 13
## 1482 asymmetric 76 2 13
## 1483 asymmetric 81 2 13
## 1484 asymmetric 82 2 13
## 1485 asymmetric 83 2 13
## 1486 asymmetric 88 2 13
## 1487 asymmetric 89 2 13
## 1488 asymmetric 90 2 13
## 1489 asymmetric 31 2 13
## 1490 asymmetric 32 2 13
## 1491 asymmetric 33 2 13
## 1492 asymmetric 38 2 13
## 1493 asymmetric 39 2 13
## 1494 asymmetric 40 2 13
## 1495 asymmetric 45 2 13
## 1496 asymmetric 46 2 13
## 1497 asymmetric 55 2 13
## 1498 asymmetric 58 2 13
## 1499 asymmetric 59 2 13
## 1500 asymmetric 60 2 13
## 1501 asymmetric 61 2 13
## 1502 asymmetric 62 2 13
## 1503 asymmetric 63 2 13
## 1504 asymmetric 66 2 13
## 1505 asymmetric 75 2 13
## 1506 asymmetric 76 2 13
## 1507 asymmetric 81 2 13
## 1508 asymmetric 82 2 13
## 1509 asymmetric 83 2 13
## 1510 asymmetric 88 2 13
## 1511 asymmetric 89 2 13
## 1512 asymmetric 90 2 13
## 1513 asymmetric 31 2 13
## 1514 asymmetric 32 2 13
## 1515 asymmetric 33 2 13
## 1516 asymmetric 38 2 13
## 1517 asymmetric 39 2 13
## 1518 asymmetric 40 2 13
## 1519 asymmetric 45 2 13
## 1520 asymmetric 46 2 13
## 1521 asymmetric 55 2 13
## 1522 asymmetric 58 2 13
## 1523 asymmetric 59 2 13
## 1524 asymmetric 60 2 13
## 1525 asymmetric 61 2 13
## 1526 asymmetric 62 2 13
## 1527 asymmetric 63 2 13
## 1528 asymmetric 66 2 13
## 1529 asymmetric 75 2 13
## 1530 asymmetric 76 2 13
## 1531 asymmetric 81 2 13
## 1532 asymmetric 82 2 13
## 1533 asymmetric 83 2 13
## 1534 asymmetric 88 2 13
## 1535 asymmetric 89 2 13
## 1536 asymmetric 90 2 13
## 1537 asymmetric 11 2 14
## 1538 asymmetric 12 2 14
## 1539 asymmetric 13 2 14
## 1540 asymmetric 16 2 14
## 1541 asymmetric 25 2 14
## 1542 asymmetric 28 2 14
## 1543 asymmetric 29 2 14
## 1544 asymmetric 30 2 14
## 1545 asymmetric 51 2 14
## 1546 asymmetric 52 2 14
## 1547 asymmetric 53 2 14
## 1548 asymmetric 56 2 14
## 1549 asymmetric 65 2 14
## 1550 asymmetric 68 2 14
## 1551 asymmetric 69 2 14
## 1552 asymmetric 70 2 14
## 1553 asymmetric 91 2 14
## 1554 asymmetric 92 2 14
## 1555 asymmetric 93 2 14
## 1556 asymmetric 96 2 14
## 1557 asymmetric 105 2 14
## 1558 asymmetric 108 2 14
## 1559 asymmetric 109 2 14
## 1560 asymmetric 110 2 14
## 1561 asymmetric 11 2 14
## 1562 asymmetric 12 2 14
## 1563 asymmetric 13 2 14
## 1564 asymmetric 16 2 14
## 1565 asymmetric 25 2 14
## 1566 asymmetric 28 2 14
## 1567 asymmetric 29 2 14
## 1568 asymmetric 30 2 14
## 1569 asymmetric 51 2 14
## 1570 asymmetric 52 2 14
## 1571 asymmetric 53 2 14
## 1572 asymmetric 56 2 14
## 1573 asymmetric 65 2 14
## 1574 asymmetric 68 2 14
## 1575 asymmetric 69 2 14
## 1576 asymmetric 70 2 14
## 1577 asymmetric 91 2 14
## 1578 asymmetric 92 2 14
## 1579 asymmetric 93 2 14
## 1580 asymmetric 96 2 14
## 1581 asymmetric 105 2 14
## 1582 asymmetric 108 2 14
## 1583 asymmetric 109 2 14
## 1584 asymmetric 110 2 14
## 1585 asymmetric 11 2 14
## 1586 asymmetric 12 2 14
## 1587 asymmetric 13 2 14
## 1588 asymmetric 16 2 14
## 1589 asymmetric 25 2 14
## 1590 asymmetric 28 2 14
## 1591 asymmetric 29 2 14
## 1592 asymmetric 30 2 14
## 1593 asymmetric 51 2 14
## 1594 asymmetric 52 2 14
## 1595 asymmetric 53 2 14
## 1596 asymmetric 56 2 14
## 1597 asymmetric 65 2 14
## 1598 asymmetric 68 2 14
## 1599 asymmetric 69 2 14
## 1600 asymmetric 70 2 14
## 1601 asymmetric 91 2 14
## 1602 asymmetric 92 2 14
## 1603 asymmetric 93 2 14
## 1604 asymmetric 96 2 14
## 1605 asymmetric 105 2 14
## 1606 asymmetric 108 2 14
## 1607 asymmetric 109 2 14
## 1608 asymmetric 110 2 14
## 1609 asymmetric 11 2 14
## 1610 asymmetric 12 2 14
## 1611 asymmetric 13 2 14
## 1612 asymmetric 16 2 14
## 1613 asymmetric 25 2 14
## 1614 asymmetric 28 2 14
## 1615 asymmetric 29 2 14
## 1616 asymmetric 30 2 14
## 1617 asymmetric 51 2 14
## 1618 asymmetric 52 2 14
## 1619 asymmetric 53 2 14
## 1620 asymmetric 56 2 14
## 1621 asymmetric 65 2 14
## 1622 asymmetric 68 2 14
## 1623 asymmetric 69 2 14
## 1624 asymmetric 70 2 14
## 1625 asymmetric 91 2 14
## 1626 asymmetric 92 2 14
## 1627 asymmetric 93 2 14
## 1628 asymmetric 96 2 14
## 1629 asymmetric 105 2 14
## 1630 asymmetric 108 2 14
## 1631 asymmetric 109 2 14
## 1632 asymmetric 110 2 14
## 1633 asymmetric 11 2 14
## 1634 asymmetric 12 2 14
## 1635 asymmetric 13 2 14
## 1636 asymmetric 16 2 14
## 1637 asymmetric 25 2 14
## 1638 asymmetric 28 2 14
## 1639 asymmetric 29 2 14
## 1640 asymmetric 30 2 14
## 1641 asymmetric 51 2 14
## 1642 asymmetric 52 2 14
## 1643 asymmetric 53 2 14
## 1644 asymmetric 56 2 14
## 1645 asymmetric 65 2 14
## 1646 asymmetric 68 2 14
## 1647 asymmetric 69 2 14
## 1648 asymmetric 70 2 14
## 1649 asymmetric 91 2 14
## 1650 asymmetric 92 2 14
## 1651 asymmetric 93 2 14
## 1652 asymmetric 96 2 14
## 1653 asymmetric 105 2 14
## 1654 asymmetric 108 2 14
## 1655 asymmetric 109 2 14
## 1656 asymmetric 110 2 14
## 1657 asymmetric 11 2 14
## 1658 asymmetric 12 2 14
## 1659 asymmetric 13 2 14
## 1660 asymmetric 16 2 14
## 1661 asymmetric 25 2 14
## 1662 asymmetric 28 2 14
## 1663 asymmetric 29 2 14
## 1664 asymmetric 30 2 14
## 1665 asymmetric 51 2 14
## 1666 asymmetric 52 2 14
## 1667 asymmetric 53 2 14
## 1668 asymmetric 56 2 14
## 1669 asymmetric 65 2 14
## 1670 asymmetric 68 2 14
## 1671 asymmetric 69 2 14
## 1672 asymmetric 70 2 14
## 1673 asymmetric 91 2 14
## 1674 asymmetric 92 2 14
## 1675 asymmetric 93 2 14
## 1676 asymmetric 96 2 14
## 1677 asymmetric 105 2 14
## 1678 asymmetric 108 2 14
## 1679 asymmetric 109 2 14
## 1680 asymmetric 110 2 14
## 1681 asymmetric 11 2 14
## 1682 asymmetric 12 2 14
## 1683 asymmetric 13 2 14
## 1684 asymmetric 16 2 14
## 1685 asymmetric 25 2 14
## 1686 asymmetric 28 2 14
## 1687 asymmetric 29 2 14
## 1688 asymmetric 30 2 14
## 1689 asymmetric 51 2 14
## 1690 asymmetric 52 2 14
## 1691 asymmetric 53 2 14
## 1692 asymmetric 56 2 14
## 1693 asymmetric 65 2 14
## 1694 asymmetric 68 2 14
## 1695 asymmetric 69 2 14
## 1696 asymmetric 70 2 14
## 1697 asymmetric 91 2 14
## 1698 asymmetric 92 2 14
## 1699 asymmetric 93 2 14
## 1700 asymmetric 96 2 14
## 1701 asymmetric 105 2 14
## 1702 asymmetric 108 2 14
## 1703 asymmetric 109 2 14
## 1704 asymmetric 110 2 14
## 1705 asymmetric 11 2 14
## 1706 asymmetric 12 2 14
## 1707 asymmetric 13 2 14
## 1708 asymmetric 16 2 14
## 1709 asymmetric 25 2 14
## 1710 asymmetric 28 2 14
## 1711 asymmetric 29 2 14
## 1712 asymmetric 30 2 14
## 1713 asymmetric 51 2 14
## 1714 asymmetric 52 2 14
## 1715 asymmetric 53 2 14
## 1716 asymmetric 56 2 14
## 1717 asymmetric 65 2 14
## 1718 asymmetric 68 2 14
## 1719 asymmetric 69 2 14
## 1720 asymmetric 70 2 14
## 1721 asymmetric 91 2 14
## 1722 asymmetric 92 2 14
## 1723 asymmetric 93 2 14
## 1724 asymmetric 96 2 14
## 1725 asymmetric 105 2 14
## 1726 asymmetric 108 2 14
## 1727 asymmetric 109 2 14
## 1728 asymmetric 110 2 14
## 1729 asymmetric 4 2 15
## 1730 asymmetric 7 2 15
## 1731 asymmetric 14 2 15
## 1732 asymmetric 17 2 15
## 1733 asymmetric 24 2 15
## 1734 asymmetric 27 2 15
## 1735 asymmetric 34 2 15
## 1736 asymmetric 37 2 15
## 1737 asymmetric 44 2 15
## 1738 asymmetric 47 2 15
## 1739 asymmetric 54 2 15
## 1740 asymmetric 57 2 15
## 1741 asymmetric 64 2 15
## 1742 asymmetric 67 2 15
## 1743 asymmetric 74 2 15
## 1744 asymmetric 77 2 15
## 1745 asymmetric 84 2 15
## 1746 asymmetric 87 2 15
## 1747 asymmetric 94 2 15
## 1748 asymmetric 97 2 15
## 1749 asymmetric 104 2 15
## 1750 asymmetric 107 2 15
## 1751 asymmetric 114 2 15
## 1752 asymmetric 117 2 15
## 1753 asymmetric 4 2 15
## 1754 asymmetric 7 2 15
## 1755 asymmetric 14 2 15
## 1756 asymmetric 17 2 15
## 1757 asymmetric 24 2 15
## 1758 asymmetric 27 2 15
## 1759 asymmetric 34 2 15
## 1760 asymmetric 37 2 15
## 1761 asymmetric 44 2 15
## 1762 asymmetric 47 2 15
## 1763 asymmetric 54 2 15
## 1764 asymmetric 57 2 15
## 1765 asymmetric 64 2 15
## 1766 asymmetric 67 2 15
## 1767 asymmetric 74 2 15
## 1768 asymmetric 77 2 15
## 1769 asymmetric 84 2 15
## 1770 asymmetric 87 2 15
## 1771 asymmetric 94 2 15
## 1772 asymmetric 97 2 15
## 1773 asymmetric 104 2 15
## 1774 asymmetric 107 2 15
## 1775 asymmetric 114 2 15
## 1776 asymmetric 117 2 15
## 1777 asymmetric 4 2 15
## 1778 asymmetric 7 2 15
## 1779 asymmetric 14 2 15
## 1780 asymmetric 17 2 15
## 1781 asymmetric 24 2 15
## 1782 asymmetric 27 2 15
## 1783 asymmetric 34 2 15
## 1784 asymmetric 37 2 15
## 1785 asymmetric 44 2 15
## 1786 asymmetric 47 2 15
## 1787 asymmetric 54 2 15
## 1788 asymmetric 57 2 15
## 1789 asymmetric 64 2 15
## 1790 asymmetric 67 2 15
## 1791 asymmetric 74 2 15
## 1792 asymmetric 77 2 15
## 1793 asymmetric 84 2 15
## 1794 asymmetric 87 2 15
## 1795 asymmetric 94 2 15
## 1796 asymmetric 97 2 15
## 1797 asymmetric 104 2 15
## 1798 asymmetric 107 2 15
## 1799 asymmetric 114 2 15
## 1800 asymmetric 117 2 15
## 1801 asymmetric 4 2 15
## 1802 asymmetric 7 2 15
## 1803 asymmetric 14 2 15
## 1804 asymmetric 17 2 15
## 1805 asymmetric 24 2 15
## 1806 asymmetric 27 2 15
## 1807 asymmetric 34 2 15
## 1808 asymmetric 37 2 15
## 1809 asymmetric 44 2 15
## 1810 asymmetric 47 2 15
## 1811 asymmetric 54 2 15
## 1812 asymmetric 57 2 15
## 1813 asymmetric 64 2 15
## 1814 asymmetric 67 2 15
## 1815 asymmetric 74 2 15
## 1816 asymmetric 77 2 15
## 1817 asymmetric 84 2 15
## 1818 asymmetric 87 2 15
## 1819 asymmetric 94 2 15
## 1820 asymmetric 97 2 15
## 1821 asymmetric 104 2 15
## 1822 asymmetric 107 2 15
## 1823 asymmetric 114 2 15
## 1824 asymmetric 117 2 15
## 1825 asymmetric 4 2 15
## 1826 asymmetric 7 2 15
## 1827 asymmetric 14 2 15
## 1828 asymmetric 17 2 15
## 1829 asymmetric 24 2 15
## 1830 asymmetric 27 2 15
## 1831 asymmetric 34 2 15
## 1832 asymmetric 37 2 15
## 1833 asymmetric 44 2 15
## 1834 asymmetric 47 2 15
## 1835 asymmetric 54 2 15
## 1836 asymmetric 57 2 15
## 1837 asymmetric 64 2 15
## 1838 asymmetric 67 2 15
## 1839 asymmetric 74 2 15
## 1840 asymmetric 77 2 15
## 1841 asymmetric 84 2 15
## 1842 asymmetric 87 2 15
## 1843 asymmetric 94 2 15
## 1844 asymmetric 97 2 15
## 1845 asymmetric 104 2 15
## 1846 asymmetric 107 2 15
## 1847 asymmetric 114 2 15
## 1848 asymmetric 117 2 15
## 1849 asymmetric 4 2 15
## 1850 asymmetric 7 2 15
## 1851 asymmetric 14 2 15
## 1852 asymmetric 17 2 15
## 1853 asymmetric 24 2 15
## 1854 asymmetric 27 2 15
## 1855 asymmetric 34 2 15
## 1856 asymmetric 37 2 15
## 1857 asymmetric 44 2 15
## 1858 asymmetric 47 2 15
## 1859 asymmetric 54 2 15
## 1860 asymmetric 57 2 15
## 1861 asymmetric 64 2 15
## 1862 asymmetric 67 2 15
## 1863 asymmetric 74 2 15
## 1864 asymmetric 77 2 15
## 1865 asymmetric 84 2 15
## 1866 asymmetric 87 2 15
## 1867 asymmetric 94 2 15
## 1868 asymmetric 97 2 15
## 1869 asymmetric 104 2 15
## 1870 asymmetric 107 2 15
## 1871 asymmetric 114 2 15
## 1872 asymmetric 117 2 15
## 1873 asymmetric 4 2 15
## 1874 asymmetric 7 2 15
## 1875 asymmetric 14 2 15
## 1876 asymmetric 17 2 15
## 1877 asymmetric 24 2 15
## 1878 asymmetric 27 2 15
## 1879 asymmetric 34 2 15
## 1880 asymmetric 37 2 15
## 1881 asymmetric 44 2 15
## 1882 asymmetric 47 2 15
## 1883 asymmetric 54 2 15
## 1884 asymmetric 57 2 15
## 1885 asymmetric 64 2 15
## 1886 asymmetric 67 2 15
## 1887 asymmetric 74 2 15
## 1888 asymmetric 77 2 15
## 1889 asymmetric 84 2 15
## 1890 asymmetric 87 2 15
## 1891 asymmetric 94 2 15
## 1892 asymmetric 97 2 15
## 1893 asymmetric 104 2 15
## 1894 asymmetric 107 2 15
## 1895 asymmetric 114 2 15
## 1896 asymmetric 117 2 15
## 1897 asymmetric 4 2 15
## 1898 asymmetric 7 2 15
## 1899 asymmetric 14 2 15
## 1900 asymmetric 17 2 15
## 1901 asymmetric 24 2 15
## 1902 asymmetric 27 2 15
## 1903 asymmetric 34 2 15
## 1904 asymmetric 37 2 15
## 1905 asymmetric 44 2 15
## 1906 asymmetric 47 2 15
## 1907 asymmetric 54 2 15
## 1908 asymmetric 57 2 15
## 1909 asymmetric 64 2 15
## 1910 asymmetric 67 2 15
## 1911 asymmetric 74 2 15
## 1912 asymmetric 77 2 15
## 1913 asymmetric 84 2 15
## 1914 asymmetric 87 2 15
## 1915 asymmetric 94 2 15
## 1916 asymmetric 97 2 15
## 1917 asymmetric 104 2 15
## 1918 asymmetric 107 2 15
## 1919 asymmetric 114 2 15
## 1920 asymmetric 117 2 15
## 1921 asymmetric 16 3 11
## 1922 asymmetric 17 3 11
## 1923 asymmetric 24 3 11
## 1924 asymmetric 25 3 11
## 1925 asymmetric 44 3 11
## 1926 asymmetric 45 3 11
## 1927 asymmetric 46 3 11
## 1928 asymmetric 47 3 11
## 1929 asymmetric 51 3 11
## 1930 asymmetric 52 3 11
## 1931 asymmetric 59 3 11
## 1932 asymmetric 60 3 11
## 1933 asymmetric 79 3 11
## 1934 asymmetric 80 3 11
## 1935 asymmetric 81 3 11
## 1936 asymmetric 82 3 11
## 1937 asymmetric 101 3 11
## 1938 asymmetric 102 3 11
## 1939 asymmetric 109 3 11
## 1940 asymmetric 110 3 11
## 1941 asymmetric 114 3 11
## 1942 asymmetric 115 3 11
## 1943 asymmetric 116 3 11
## 1944 asymmetric 117 3 11
## 1945 asymmetric 16 3 11
## 1946 asymmetric 17 3 11
## 1947 asymmetric 24 3 11
## 1948 asymmetric 25 3 11
## 1949 asymmetric 44 3 11
## 1950 asymmetric 45 3 11
## 1951 asymmetric 46 3 11
## 1952 asymmetric 47 3 11
## 1953 asymmetric 51 3 11
## 1954 asymmetric 52 3 11
## 1955 asymmetric 59 3 11
## 1956 asymmetric 60 3 11
## 1957 asymmetric 79 3 11
## 1958 asymmetric 80 3 11
## 1959 asymmetric 81 3 11
## 1960 asymmetric 82 3 11
## 1961 asymmetric 101 3 11
## 1962 asymmetric 102 3 11
## 1963 asymmetric 109 3 11
## 1964 asymmetric 110 3 11
## 1965 asymmetric 114 3 11
## 1966 asymmetric 115 3 11
## 1967 asymmetric 116 3 11
## 1968 asymmetric 117 3 11
## 1969 asymmetric 16 3 11
## 1970 asymmetric 17 3 11
## 1971 asymmetric 24 3 11
## 1972 asymmetric 25 3 11
## 1973 asymmetric 44 3 11
## 1974 asymmetric 45 3 11
## 1975 asymmetric 46 3 11
## 1976 asymmetric 47 3 11
## 1977 asymmetric 51 3 11
## 1978 asymmetric 52 3 11
## 1979 asymmetric 59 3 11
## 1980 asymmetric 60 3 11
## 1981 asymmetric 79 3 11
## 1982 asymmetric 80 3 11
## 1983 asymmetric 81 3 11
## 1984 asymmetric 82 3 11
## 1985 asymmetric 101 3 11
## 1986 asymmetric 102 3 11
## 1987 asymmetric 109 3 11
## 1988 asymmetric 110 3 11
## 1989 asymmetric 114 3 11
## 1990 asymmetric 115 3 11
## 1991 asymmetric 116 3 11
## 1992 asymmetric 117 3 11
## 1993 asymmetric 16 3 11
## 1994 asymmetric 17 3 11
## 1995 asymmetric 24 3 11
## 1996 asymmetric 25 3 11
## 1997 asymmetric 44 3 11
## 1998 asymmetric 45 3 11
## 1999 asymmetric 46 3 11
## 2000 asymmetric 47 3 11
## 2001 asymmetric 51 3 11
## 2002 asymmetric 52 3 11
## 2003 asymmetric 59 3 11
## 2004 asymmetric 60 3 11
## 2005 asymmetric 79 3 11
## 2006 asymmetric 80 3 11
## 2007 asymmetric 81 3 11
## 2008 asymmetric 82 3 11
## 2009 asymmetric 101 3 11
## 2010 asymmetric 102 3 11
## 2011 asymmetric 109 3 11
## 2012 asymmetric 110 3 11
## 2013 asymmetric 114 3 11
## 2014 asymmetric 115 3 11
## 2015 asymmetric 116 3 11
## 2016 asymmetric 117 3 11
## 2017 asymmetric 16 3 11
## 2018 asymmetric 17 3 11
## 2019 asymmetric 24 3 11
## 2020 asymmetric 25 3 11
## 2021 asymmetric 44 3 11
## 2022 asymmetric 45 3 11
## 2023 asymmetric 46 3 11
## 2024 asymmetric 47 3 11
## 2025 asymmetric 51 3 11
## 2026 asymmetric 52 3 11
## 2027 asymmetric 59 3 11
## 2028 asymmetric 60 3 11
## 2029 asymmetric 79 3 11
## 2030 asymmetric 80 3 11
## 2031 asymmetric 81 3 11
## 2032 asymmetric 82 3 11
## 2033 asymmetric 101 3 11
## 2034 asymmetric 102 3 11
## 2035 asymmetric 109 3 11
## 2036 asymmetric 110 3 11
## 2037 asymmetric 114 3 11
## 2038 asymmetric 115 3 11
## 2039 asymmetric 116 3 11
## 2040 asymmetric 117 3 11
## 2041 asymmetric 16 3 11
## 2042 asymmetric 17 3 11
## 2043 asymmetric 24 3 11
## 2044 asymmetric 25 3 11
## 2045 asymmetric 44 3 11
## 2046 asymmetric 45 3 11
## 2047 asymmetric 46 3 11
## 2048 asymmetric 47 3 11
## 2049 asymmetric 51 3 11
## 2050 asymmetric 52 3 11
## 2051 asymmetric 59 3 11
## 2052 asymmetric 60 3 11
## 2053 asymmetric 79 3 11
## 2054 asymmetric 80 3 11
## 2055 asymmetric 81 3 11
## 2056 asymmetric 82 3 11
## 2057 asymmetric 101 3 11
## 2058 asymmetric 102 3 11
## 2059 asymmetric 109 3 11
## 2060 asymmetric 110 3 11
## 2061 asymmetric 114 3 11
## 2062 asymmetric 115 3 11
## 2063 asymmetric 116 3 11
## 2064 asymmetric 117 3 11
## 2065 asymmetric 16 3 11
## 2066 asymmetric 17 3 11
## 2067 asymmetric 24 3 11
## 2068 asymmetric 25 3 11
## 2069 asymmetric 44 3 11
## 2070 asymmetric 45 3 11
## 2071 asymmetric 46 3 11
## 2072 asymmetric 47 3 11
## 2073 asymmetric 51 3 11
## 2074 asymmetric 52 3 11
## 2075 asymmetric 59 3 11
## 2076 asymmetric 60 3 11
## 2077 asymmetric 79 3 11
## 2078 asymmetric 80 3 11
## 2079 asymmetric 81 3 11
## 2080 asymmetric 82 3 11
## 2081 asymmetric 101 3 11
## 2082 asymmetric 102 3 11
## 2083 asymmetric 109 3 11
## 2084 asymmetric 110 3 11
## 2085 asymmetric 114 3 11
## 2086 asymmetric 115 3 11
## 2087 asymmetric 116 3 11
## 2088 asymmetric 117 3 11
## 2089 asymmetric 16 3 11
## 2090 asymmetric 17 3 11
## 2091 asymmetric 24 3 11
## 2092 asymmetric 25 3 11
## 2093 asymmetric 44 3 11
## 2094 asymmetric 45 3 11
## 2095 asymmetric 46 3 11
## 2096 asymmetric 47 3 11
## 2097 asymmetric 51 3 11
## 2098 asymmetric 52 3 11
## 2099 asymmetric 59 3 11
## 2100 asymmetric 60 3 11
## 2101 asymmetric 79 3 11
## 2102 asymmetric 80 3 11
## 2103 asymmetric 81 3 11
## 2104 asymmetric 82 3 11
## 2105 asymmetric 101 3 11
## 2106 asymmetric 102 3 11
## 2107 asymmetric 109 3 11
## 2108 asymmetric 110 3 11
## 2109 asymmetric 114 3 11
## 2110 asymmetric 115 3 11
## 2111 asymmetric 116 3 11
## 2112 asymmetric 117 3 11
## 2113 asymmetric 4 3 12
## 2114 asymmetric 5 3 12
## 2115 asymmetric 6 3 12
## 2116 asymmetric 7 3 12
## 2117 asymmetric 11 3 12
## 2118 asymmetric 12 3 12
## 2119 asymmetric 19 3 12
## 2120 asymmetric 20 3 12
## 2121 asymmetric 39 3 12
## 2122 asymmetric 40 3 12
## 2123 asymmetric 41 3 12
## 2124 asymmetric 42 3 12
## 2125 asymmetric 61 3 12
## 2126 asymmetric 62 3 12
## 2127 asymmetric 69 3 12
## 2128 asymmetric 70 3 12
## 2129 asymmetric 74 3 12
## 2130 asymmetric 75 3 12
## 2131 asymmetric 76 3 12
## 2132 asymmetric 77 3 12
## 2133 asymmetric 96 3 12
## 2134 asymmetric 97 3 12
## 2135 asymmetric 104 3 12
## 2136 asymmetric 105 3 12
## 2137 asymmetric 4 3 12
## 2138 asymmetric 5 3 12
## 2139 asymmetric 6 3 12
## 2140 asymmetric 7 3 12
## 2141 asymmetric 11 3 12
## 2142 asymmetric 12 3 12
## 2143 asymmetric 19 3 12
## 2144 asymmetric 20 3 12
## 2145 asymmetric 39 3 12
## 2146 asymmetric 40 3 12
## 2147 asymmetric 41 3 12
## 2148 asymmetric 42 3 12
## 2149 asymmetric 61 3 12
## 2150 asymmetric 62 3 12
## 2151 asymmetric 69 3 12
## 2152 asymmetric 70 3 12
## 2153 asymmetric 74 3 12
## 2154 asymmetric 75 3 12
## 2155 asymmetric 76 3 12
## 2156 asymmetric 77 3 12
## 2157 asymmetric 96 3 12
## 2158 asymmetric 97 3 12
## 2159 asymmetric 104 3 12
## 2160 asymmetric 105 3 12
## 2161 asymmetric 4 3 12
## 2162 asymmetric 5 3 12
## 2163 asymmetric 6 3 12
## 2164 asymmetric 7 3 12
## 2165 asymmetric 11 3 12
## 2166 asymmetric 12 3 12
## 2167 asymmetric 19 3 12
## 2168 asymmetric 20 3 12
## 2169 asymmetric 39 3 12
## 2170 asymmetric 40 3 12
## 2171 asymmetric 41 3 12
## 2172 asymmetric 42 3 12
## 2173 asymmetric 61 3 12
## 2174 asymmetric 62 3 12
## 2175 asymmetric 69 3 12
## 2176 asymmetric 70 3 12
## 2177 asymmetric 74 3 12
## 2178 asymmetric 75 3 12
## 2179 asymmetric 76 3 12
## 2180 asymmetric 77 3 12
## 2181 asymmetric 96 3 12
## 2182 asymmetric 97 3 12
## 2183 asymmetric 104 3 12
## 2184 asymmetric 105 3 12
## 2185 asymmetric 4 3 12
## 2186 asymmetric 5 3 12
## 2187 asymmetric 6 3 12
## 2188 asymmetric 7 3 12
## 2189 asymmetric 11 3 12
## 2190 asymmetric 12 3 12
## 2191 asymmetric 19 3 12
## 2192 asymmetric 20 3 12
## 2193 asymmetric 39 3 12
## 2194 asymmetric 40 3 12
## 2195 asymmetric 41 3 12
## 2196 asymmetric 42 3 12
## 2197 asymmetric 61 3 12
## 2198 asymmetric 62 3 12
## 2199 asymmetric 69 3 12
## 2200 asymmetric 70 3 12
## 2201 asymmetric 74 3 12
## 2202 asymmetric 75 3 12
## 2203 asymmetric 76 3 12
## 2204 asymmetric 77 3 12
## 2205 asymmetric 96 3 12
## 2206 asymmetric 97 3 12
## 2207 asymmetric 104 3 12
## 2208 asymmetric 105 3 12
## 2209 asymmetric 4 3 12
## 2210 asymmetric 5 3 12
## 2211 asymmetric 6 3 12
## 2212 asymmetric 7 3 12
## 2213 asymmetric 11 3 12
## 2214 asymmetric 12 3 12
## 2215 asymmetric 19 3 12
## 2216 asymmetric 20 3 12
## 2217 asymmetric 39 3 12
## 2218 asymmetric 40 3 12
## 2219 asymmetric 41 3 12
## 2220 asymmetric 42 3 12
## 2221 asymmetric 61 3 12
## 2222 asymmetric 62 3 12
## 2223 asymmetric 69 3 12
## 2224 asymmetric 70 3 12
## 2225 asymmetric 74 3 12
## 2226 asymmetric 75 3 12
## 2227 asymmetric 76 3 12
## 2228 asymmetric 77 3 12
## 2229 asymmetric 96 3 12
## 2230 asymmetric 97 3 12
## 2231 asymmetric 104 3 12
## 2232 asymmetric 105 3 12
## 2233 asymmetric 4 3 12
## 2234 asymmetric 5 3 12
## 2235 asymmetric 6 3 12
## 2236 asymmetric 7 3 12
## 2237 asymmetric 11 3 12
## 2238 asymmetric 12 3 12
## 2239 asymmetric 19 3 12
## 2240 asymmetric 20 3 12
## 2241 asymmetric 39 3 12
## 2242 asymmetric 40 3 12
## 2243 asymmetric 41 3 12
## 2244 asymmetric 42 3 12
## 2245 asymmetric 61 3 12
## 2246 asymmetric 62 3 12
## 2247 asymmetric 69 3 12
## 2248 asymmetric 70 3 12
## 2249 asymmetric 74 3 12
## 2250 asymmetric 75 3 12
## 2251 asymmetric 76 3 12
## 2252 asymmetric 77 3 12
## 2253 asymmetric 96 3 12
## 2254 asymmetric 97 3 12
## 2255 asymmetric 104 3 12
## 2256 asymmetric 105 3 12
## 2257 asymmetric 4 3 12
## 2258 asymmetric 5 3 12
## 2259 asymmetric 6 3 12
## 2260 asymmetric 7 3 12
## 2261 asymmetric 11 3 12
## 2262 asymmetric 12 3 12
## 2263 asymmetric 19 3 12
## 2264 asymmetric 20 3 12
## 2265 asymmetric 39 3 12
## 2266 asymmetric 40 3 12
## 2267 asymmetric 41 3 12
## 2268 asymmetric 42 3 12
## 2269 asymmetric 61 3 12
## 2270 asymmetric 62 3 12
## 2271 asymmetric 69 3 12
## 2272 asymmetric 70 3 12
## 2273 asymmetric 74 3 12
## 2274 asymmetric 75 3 12
## 2275 asymmetric 76 3 12
## 2276 asymmetric 77 3 12
## 2277 asymmetric 96 3 12
## 2278 asymmetric 97 3 12
## 2279 asymmetric 104 3 12
## 2280 asymmetric 105 3 12
## 2281 asymmetric 4 3 12
## 2282 asymmetric 5 3 12
## 2283 asymmetric 6 3 12
## 2284 asymmetric 7 3 12
## 2285 asymmetric 11 3 12
## 2286 asymmetric 12 3 12
## 2287 asymmetric 19 3 12
## 2288 asymmetric 20 3 12
## 2289 asymmetric 39 3 12
## 2290 asymmetric 40 3 12
## 2291 asymmetric 41 3 12
## 2292 asymmetric 42 3 12
## 2293 asymmetric 61 3 12
## 2294 asymmetric 62 3 12
## 2295 asymmetric 69 3 12
## 2296 asymmetric 70 3 12
## 2297 asymmetric 74 3 12
## 2298 asymmetric 75 3 12
## 2299 asymmetric 76 3 12
## 2300 asymmetric 77 3 12
## 2301 asymmetric 96 3 12
## 2302 asymmetric 97 3 12
## 2303 asymmetric 104 3 12
## 2304 asymmetric 105 3 12
## 2305 asymmetric 1 3 13
## 2306 asymmetric 2 3 13
## 2307 asymmetric 21 3 13
## 2308 asymmetric 22 3 13
## 2309 asymmetric 29 3 13
## 2310 asymmetric 30 3 13
## 2311 asymmetric 34 3 13
## 2312 asymmetric 35 3 13
## 2313 asymmetric 36 3 13
## 2314 asymmetric 37 3 13
## 2315 asymmetric 56 3 13
## 2316 asymmetric 57 3 13
## 2317 asymmetric 64 3 13
## 2318 asymmetric 65 3 13
## 2319 asymmetric 84 3 13
## 2320 asymmetric 85 3 13
## 2321 asymmetric 86 3 13
## 2322 asymmetric 87 3 13
## 2323 asymmetric 91 3 13
## 2324 asymmetric 92 3 13
## 2325 asymmetric 99 3 13
## 2326 asymmetric 100 3 13
## 2327 asymmetric 119 3 13
## 2328 asymmetric 120 3 13
## 2329 asymmetric 1 3 13
## 2330 asymmetric 2 3 13
## 2331 asymmetric 21 3 13
## 2332 asymmetric 22 3 13
## 2333 asymmetric 29 3 13
## 2334 asymmetric 30 3 13
## 2335 asymmetric 34 3 13
## 2336 asymmetric 35 3 13
## 2337 asymmetric 36 3 13
## 2338 asymmetric 37 3 13
## 2339 asymmetric 56 3 13
## 2340 asymmetric 57 3 13
## 2341 asymmetric 64 3 13
## 2342 asymmetric 65 3 13
## 2343 asymmetric 84 3 13
## 2344 asymmetric 85 3 13
## 2345 asymmetric 86 3 13
## 2346 asymmetric 87 3 13
## 2347 asymmetric 91 3 13
## 2348 asymmetric 92 3 13
## 2349 asymmetric 99 3 13
## 2350 asymmetric 100 3 13
## 2351 asymmetric 119 3 13
## 2352 asymmetric 120 3 13
## 2353 asymmetric 1 3 13
## 2354 asymmetric 2 3 13
## 2355 asymmetric 21 3 13
## 2356 asymmetric 22 3 13
## 2357 asymmetric 29 3 13
## 2358 asymmetric 30 3 13
## 2359 asymmetric 34 3 13
## 2360 asymmetric 35 3 13
## 2361 asymmetric 36 3 13
## 2362 asymmetric 37 3 13
## 2363 asymmetric 56 3 13
## 2364 asymmetric 57 3 13
## 2365 asymmetric 64 3 13
## 2366 asymmetric 65 3 13
## 2367 asymmetric 84 3 13
## 2368 asymmetric 85 3 13
## 2369 asymmetric 86 3 13
## 2370 asymmetric 87 3 13
## 2371 asymmetric 91 3 13
## 2372 asymmetric 92 3 13
## 2373 asymmetric 99 3 13
## 2374 asymmetric 100 3 13
## 2375 asymmetric 119 3 13
## 2376 asymmetric 120 3 13
## 2377 asymmetric 1 3 13
## 2378 asymmetric 2 3 13
## 2379 asymmetric 21 3 13
## 2380 asymmetric 22 3 13
## 2381 asymmetric 29 3 13
## 2382 asymmetric 30 3 13
## 2383 asymmetric 34 3 13
## 2384 asymmetric 35 3 13
## 2385 asymmetric 36 3 13
## 2386 asymmetric 37 3 13
## 2387 asymmetric 56 3 13
## 2388 asymmetric 57 3 13
## 2389 asymmetric 64 3 13
## 2390 asymmetric 65 3 13
## 2391 asymmetric 84 3 13
## 2392 asymmetric 85 3 13
## 2393 asymmetric 86 3 13
## 2394 asymmetric 87 3 13
## 2395 asymmetric 91 3 13
## 2396 asymmetric 92 3 13
## 2397 asymmetric 99 3 13
## 2398 asymmetric 100 3 13
## 2399 asymmetric 119 3 13
## 2400 asymmetric 120 3 13
## 2401 asymmetric 1 3 13
## 2402 asymmetric 2 3 13
## 2403 asymmetric 21 3 13
## 2404 asymmetric 22 3 13
## 2405 asymmetric 29 3 13
## 2406 asymmetric 30 3 13
## 2407 asymmetric 34 3 13
## 2408 asymmetric 35 3 13
## 2409 asymmetric 36 3 13
## 2410 asymmetric 37 3 13
## 2411 asymmetric 56 3 13
## 2412 asymmetric 57 3 13
## 2413 asymmetric 64 3 13
## 2414 asymmetric 65 3 13
## 2415 asymmetric 84 3 13
## 2416 asymmetric 85 3 13
## 2417 asymmetric 86 3 13
## 2418 asymmetric 87 3 13
## 2419 asymmetric 91 3 13
## 2420 asymmetric 92 3 13
## 2421 asymmetric 99 3 13
## 2422 asymmetric 100 3 13
## 2423 asymmetric 119 3 13
## 2424 asymmetric 120 3 13
## 2425 asymmetric 1 3 13
## 2426 asymmetric 2 3 13
## 2427 asymmetric 21 3 13
## 2428 asymmetric 22 3 13
## 2429 asymmetric 29 3 13
## 2430 asymmetric 30 3 13
## 2431 asymmetric 34 3 13
## 2432 asymmetric 35 3 13
## 2433 asymmetric 36 3 13
## 2434 asymmetric 37 3 13
## 2435 asymmetric 56 3 13
## 2436 asymmetric 57 3 13
## 2437 asymmetric 64 3 13
## 2438 asymmetric 65 3 13
## 2439 asymmetric 84 3 13
## 2440 asymmetric 85 3 13
## 2441 asymmetric 86 3 13
## 2442 asymmetric 87 3 13
## 2443 asymmetric 91 3 13
## 2444 asymmetric 92 3 13
## 2445 asymmetric 99 3 13
## 2446 asymmetric 100 3 13
## 2447 asymmetric 119 3 13
## 2448 asymmetric 120 3 13
## 2449 asymmetric 1 3 13
## 2450 asymmetric 2 3 13
## 2451 asymmetric 21 3 13
## 2452 asymmetric 22 3 13
## 2453 asymmetric 29 3 13
## 2454 asymmetric 30 3 13
## 2455 asymmetric 34 3 13
## 2456 asymmetric 35 3 13
## 2457 asymmetric 36 3 13
## 2458 asymmetric 37 3 13
## 2459 asymmetric 56 3 13
## 2460 asymmetric 57 3 13
## 2461 asymmetric 64 3 13
## 2462 asymmetric 65 3 13
## 2463 asymmetric 84 3 13
## 2464 asymmetric 85 3 13
## 2465 asymmetric 86 3 13
## 2466 asymmetric 87 3 13
## 2467 asymmetric 91 3 13
## 2468 asymmetric 92 3 13
## 2469 asymmetric 99 3 13
## 2470 asymmetric 100 3 13
## 2471 asymmetric 119 3 13
## 2472 asymmetric 120 3 13
## 2473 asymmetric 1 3 13
## 2474 asymmetric 2 3 13
## 2475 asymmetric 21 3 13
## 2476 asymmetric 22 3 13
## 2477 asymmetric 29 3 13
## 2478 asymmetric 30 3 13
## 2479 asymmetric 34 3 13
## 2480 asymmetric 35 3 13
## 2481 asymmetric 36 3 13
## 2482 asymmetric 37 3 13
## 2483 asymmetric 56 3 13
## 2484 asymmetric 57 3 13
## 2485 asymmetric 64 3 13
## 2486 asymmetric 65 3 13
## 2487 asymmetric 84 3 13
## 2488 asymmetric 85 3 13
## 2489 asymmetric 86 3 13
## 2490 asymmetric 87 3 13
## 2491 asymmetric 91 3 13
## 2492 asymmetric 92 3 13
## 2493 asymmetric 99 3 13
## 2494 asymmetric 100 3 13
## 2495 asymmetric 119 3 13
## 2496 asymmetric 120 3 13
## 2497 asymmetric 9 3 14
## 2498 asymmetric 10 3 14
## 2499 asymmetric 14 3 14
## 2500 asymmetric 15 3 14
## 2501 asymmetric 26 3 14
## 2502 asymmetric 27 3 14
## 2503 asymmetric 31 3 14
## 2504 asymmetric 32 3 14
## 2505 asymmetric 49 3 14
## 2506 asymmetric 50 3 14
## 2507 asymmetric 54 3 14
## 2508 asymmetric 55 3 14
## 2509 asymmetric 66 3 14
## 2510 asymmetric 67 3 14
## 2511 asymmetric 71 3 14
## 2512 asymmetric 72 3 14
## 2513 asymmetric 89 3 14
## 2514 asymmetric 90 3 14
## 2515 asymmetric 94 3 14
## 2516 asymmetric 95 3 14
## 2517 asymmetric 106 3 14
## 2518 asymmetric 107 3 14
## 2519 asymmetric 111 3 14
## 2520 asymmetric 112 3 14
## 2521 asymmetric 9 3 14
## 2522 asymmetric 10 3 14
## 2523 asymmetric 14 3 14
## 2524 asymmetric 15 3 14
## 2525 asymmetric 26 3 14
## 2526 asymmetric 27 3 14
## 2527 asymmetric 31 3 14
## 2528 asymmetric 32 3 14
## 2529 asymmetric 49 3 14
## 2530 asymmetric 50 3 14
## 2531 asymmetric 54 3 14
## 2532 asymmetric 55 3 14
## 2533 asymmetric 66 3 14
## 2534 asymmetric 67 3 14
## 2535 asymmetric 71 3 14
## 2536 asymmetric 72 3 14
## 2537 asymmetric 89 3 14
## 2538 asymmetric 90 3 14
## 2539 asymmetric 94 3 14
## 2540 asymmetric 95 3 14
## 2541 asymmetric 106 3 14
## 2542 asymmetric 107 3 14
## 2543 asymmetric 111 3 14
## 2544 asymmetric 112 3 14
## 2545 asymmetric 9 3 14
## 2546 asymmetric 10 3 14
## 2547 asymmetric 14 3 14
## 2548 asymmetric 15 3 14
## 2549 asymmetric 26 3 14
## 2550 asymmetric 27 3 14
## 2551 asymmetric 31 3 14
## 2552 asymmetric 32 3 14
## 2553 asymmetric 49 3 14
## 2554 asymmetric 50 3 14
## 2555 asymmetric 54 3 14
## 2556 asymmetric 55 3 14
## 2557 asymmetric 66 3 14
## 2558 asymmetric 67 3 14
## 2559 asymmetric 71 3 14
## 2560 asymmetric 72 3 14
## 2561 asymmetric 89 3 14
## 2562 asymmetric 90 3 14
## 2563 asymmetric 94 3 14
## 2564 asymmetric 95 3 14
## 2565 asymmetric 106 3 14
## 2566 asymmetric 107 3 14
## 2567 asymmetric 111 3 14
## 2568 asymmetric 112 3 14
## 2569 asymmetric 9 3 14
## 2570 asymmetric 10 3 14
## 2571 asymmetric 14 3 14
## 2572 asymmetric 15 3 14
## 2573 asymmetric 26 3 14
## 2574 asymmetric 27 3 14
## 2575 asymmetric 31 3 14
## 2576 asymmetric 32 3 14
## 2577 asymmetric 49 3 14
## 2578 asymmetric 50 3 14
## 2579 asymmetric 54 3 14
## 2580 asymmetric 55 3 14
## 2581 asymmetric 66 3 14
## 2582 asymmetric 67 3 14
## 2583 asymmetric 71 3 14
## 2584 asymmetric 72 3 14
## 2585 asymmetric 89 3 14
## 2586 asymmetric 90 3 14
## 2587 asymmetric 94 3 14
## 2588 asymmetric 95 3 14
## 2589 asymmetric 106 3 14
## 2590 asymmetric 107 3 14
## 2591 asymmetric 111 3 14
## 2592 asymmetric 112 3 14
## 2593 asymmetric 9 3 14
## 2594 asymmetric 10 3 14
## 2595 asymmetric 14 3 14
## 2596 asymmetric 15 3 14
## 2597 asymmetric 26 3 14
## 2598 asymmetric 27 3 14
## 2599 asymmetric 31 3 14
## 2600 asymmetric 32 3 14
## 2601 asymmetric 49 3 14
## 2602 asymmetric 50 3 14
## 2603 asymmetric 54 3 14
## 2604 asymmetric 55 3 14
## 2605 asymmetric 66 3 14
## 2606 asymmetric 67 3 14
## 2607 asymmetric 71 3 14
## 2608 asymmetric 72 3 14
## 2609 asymmetric 89 3 14
## 2610 asymmetric 90 3 14
## 2611 asymmetric 94 3 14
## 2612 asymmetric 95 3 14
## 2613 asymmetric 106 3 14
## 2614 asymmetric 107 3 14
## 2615 asymmetric 111 3 14
## 2616 asymmetric 112 3 14
## 2617 asymmetric 9 3 14
## 2618 asymmetric 10 3 14
## 2619 asymmetric 14 3 14
## 2620 asymmetric 15 3 14
## 2621 asymmetric 26 3 14
## 2622 asymmetric 27 3 14
## 2623 asymmetric 31 3 14
## 2624 asymmetric 32 3 14
## 2625 asymmetric 49 3 14
## 2626 asymmetric 50 3 14
## 2627 asymmetric 54 3 14
## 2628 asymmetric 55 3 14
## 2629 asymmetric 66 3 14
## 2630 asymmetric 67 3 14
## 2631 asymmetric 71 3 14
## 2632 asymmetric 72 3 14
## 2633 asymmetric 89 3 14
## 2634 asymmetric 90 3 14
## 2635 asymmetric 94 3 14
## 2636 asymmetric 95 3 14
## 2637 asymmetric 106 3 14
## 2638 asymmetric 107 3 14
## 2639 asymmetric 111 3 14
## 2640 asymmetric 112 3 14
## 2641 asymmetric 9 3 14
## 2642 asymmetric 10 3 14
## 2643 asymmetric 14 3 14
## 2644 asymmetric 15 3 14
## 2645 asymmetric 26 3 14
## 2646 asymmetric 27 3 14
## 2647 asymmetric 31 3 14
## 2648 asymmetric 32 3 14
## 2649 asymmetric 49 3 14
## 2650 asymmetric 50 3 14
## 2651 asymmetric 54 3 14
## 2652 asymmetric 55 3 14
## 2653 asymmetric 66 3 14
## 2654 asymmetric 67 3 14
## 2655 asymmetric 71 3 14
## 2656 asymmetric 72 3 14
## 2657 asymmetric 89 3 14
## 2658 asymmetric 90 3 14
## 2659 asymmetric 94 3 14
## 2660 asymmetric 95 3 14
## 2661 asymmetric 106 3 14
## 2662 asymmetric 107 3 14
## 2663 asymmetric 111 3 14
## 2664 asymmetric 112 3 14
## 2665 asymmetric 9 3 14
## 2666 asymmetric 10 3 14
## 2667 asymmetric 14 3 14
## 2668 asymmetric 15 3 14
## 2669 asymmetric 26 3 14
## 2670 asymmetric 27 3 14
## 2671 asymmetric 31 3 14
## 2672 asymmetric 32 3 14
## 2673 asymmetric 49 3 14
## 2674 asymmetric 50 3 14
## 2675 asymmetric 54 3 14
## 2676 asymmetric 55 3 14
## 2677 asymmetric 66 3 14
## 2678 asymmetric 67 3 14
## 2679 asymmetric 71 3 14
## 2680 asymmetric 72 3 14
## 2681 asymmetric 89 3 14
## 2682 asymmetric 90 3 14
## 2683 asymmetric 94 3 14
## 2684 asymmetric 95 3 14
## 2685 asymmetric 106 3 14
## 2686 asymmetric 107 3 14
## 2687 asymmetric 111 3 14
## 2688 asymmetric 112 3 14
## 2689 asymmetric 3 3 15
## 2690 asymmetric 8 3 15
## 2691 asymmetric 13 3 15
## 2692 asymmetric 18 3 15
## 2693 asymmetric 23 3 15
## 2694 asymmetric 28 3 15
## 2695 asymmetric 33 3 15
## 2696 asymmetric 38 3 15
## 2697 asymmetric 43 3 15
## 2698 asymmetric 48 3 15
## 2699 asymmetric 53 3 15
## 2700 asymmetric 58 3 15
## 2701 asymmetric 63 3 15
## 2702 asymmetric 68 3 15
## 2703 asymmetric 73 3 15
## 2704 asymmetric 78 3 15
## 2705 asymmetric 83 3 15
## 2706 asymmetric 88 3 15
## 2707 asymmetric 93 3 15
## 2708 asymmetric 98 3 15
## 2709 asymmetric 103 3 15
## 2710 asymmetric 108 3 15
## 2711 asymmetric 113 3 15
## 2712 asymmetric 118 3 15
## 2713 asymmetric 3 3 15
## 2714 asymmetric 8 3 15
## 2715 asymmetric 13 3 15
## 2716 asymmetric 18 3 15
## 2717 asymmetric 23 3 15
## 2718 asymmetric 28 3 15
## 2719 asymmetric 33 3 15
## 2720 asymmetric 38 3 15
## 2721 asymmetric 43 3 15
## 2722 asymmetric 48 3 15
## 2723 asymmetric 53 3 15
## 2724 asymmetric 58 3 15
## 2725 asymmetric 63 3 15
## 2726 asymmetric 68 3 15
## 2727 asymmetric 73 3 15
## 2728 asymmetric 78 3 15
## 2729 asymmetric 83 3 15
## 2730 asymmetric 88 3 15
## 2731 asymmetric 93 3 15
## 2732 asymmetric 98 3 15
## 2733 asymmetric 103 3 15
## 2734 asymmetric 108 3 15
## 2735 asymmetric 113 3 15
## 2736 asymmetric 118 3 15
## 2737 asymmetric 3 3 15
## 2738 asymmetric 8 3 15
## 2739 asymmetric 13 3 15
## 2740 asymmetric 18 3 15
## 2741 asymmetric 23 3 15
## 2742 asymmetric 28 3 15
## 2743 asymmetric 33 3 15
## 2744 asymmetric 38 3 15
## 2745 asymmetric 43 3 15
## 2746 asymmetric 48 3 15
## 2747 asymmetric 53 3 15
## 2748 asymmetric 58 3 15
## 2749 asymmetric 63 3 15
## 2750 asymmetric 68 3 15
## 2751 asymmetric 73 3 15
## 2752 asymmetric 78 3 15
## 2753 asymmetric 83 3 15
## 2754 asymmetric 88 3 15
## 2755 asymmetric 93 3 15
## 2756 asymmetric 98 3 15
## 2757 asymmetric 103 3 15
## 2758 asymmetric 108 3 15
## 2759 asymmetric 113 3 15
## 2760 asymmetric 118 3 15
## 2761 asymmetric 3 3 15
## 2762 asymmetric 8 3 15
## 2763 asymmetric 13 3 15
## 2764 asymmetric 18 3 15
## 2765 asymmetric 23 3 15
## 2766 asymmetric 28 3 15
## 2767 asymmetric 33 3 15
## 2768 asymmetric 38 3 15
## 2769 asymmetric 43 3 15
## 2770 asymmetric 48 3 15
## 2771 asymmetric 53 3 15
## 2772 asymmetric 58 3 15
## 2773 asymmetric 63 3 15
## 2774 asymmetric 68 3 15
## 2775 asymmetric 73 3 15
## 2776 asymmetric 78 3 15
## 2777 asymmetric 83 3 15
## 2778 asymmetric 88 3 15
## 2779 asymmetric 93 3 15
## 2780 asymmetric 98 3 15
## 2781 asymmetric 103 3 15
## 2782 asymmetric 108 3 15
## 2783 asymmetric 113 3 15
## 2784 asymmetric 118 3 15
## 2785 asymmetric 3 3 15
## 2786 asymmetric 8 3 15
## 2787 asymmetric 13 3 15
## 2788 asymmetric 18 3 15
## 2789 asymmetric 23 3 15
## 2790 asymmetric 28 3 15
## 2791 asymmetric 33 3 15
## 2792 asymmetric 38 3 15
## 2793 asymmetric 43 3 15
## 2794 asymmetric 48 3 15
## 2795 asymmetric 53 3 15
## 2796 asymmetric 58 3 15
## 2797 asymmetric 63 3 15
## 2798 asymmetric 68 3 15
## 2799 asymmetric 73 3 15
## 2800 asymmetric 78 3 15
## 2801 asymmetric 83 3 15
## 2802 asymmetric 88 3 15
## 2803 asymmetric 93 3 15
## 2804 asymmetric 98 3 15
## 2805 asymmetric 103 3 15
## 2806 asymmetric 108 3 15
## 2807 asymmetric 113 3 15
## 2808 asymmetric 118 3 15
## 2809 asymmetric 3 3 15
## 2810 asymmetric 8 3 15
## 2811 asymmetric 13 3 15
## 2812 asymmetric 18 3 15
## 2813 asymmetric 23 3 15
## 2814 asymmetric 28 3 15
## 2815 asymmetric 33 3 15
## 2816 asymmetric 38 3 15
## 2817 asymmetric 43 3 15
## 2818 asymmetric 48 3 15
## 2819 asymmetric 53 3 15
## 2820 asymmetric 58 3 15
## 2821 asymmetric 63 3 15
## 2822 asymmetric 68 3 15
## 2823 asymmetric 73 3 15
## 2824 asymmetric 78 3 15
## 2825 asymmetric 83 3 15
## 2826 asymmetric 88 3 15
## 2827 asymmetric 93 3 15
## 2828 asymmetric 98 3 15
## 2829 asymmetric 103 3 15
## 2830 asymmetric 108 3 15
## 2831 asymmetric 113 3 15
## 2832 asymmetric 118 3 15
## 2833 asymmetric 3 3 15
## 2834 asymmetric 8 3 15
## 2835 asymmetric 13 3 15
## 2836 asymmetric 18 3 15
## 2837 asymmetric 23 3 15
## 2838 asymmetric 28 3 15
## 2839 asymmetric 33 3 15
## 2840 asymmetric 38 3 15
## 2841 asymmetric 43 3 15
## 2842 asymmetric 48 3 15
## 2843 asymmetric 53 3 15
## 2844 asymmetric 58 3 15
## 2845 asymmetric 63 3 15
## 2846 asymmetric 68 3 15
## 2847 asymmetric 73 3 15
## 2848 asymmetric 78 3 15
## 2849 asymmetric 83 3 15
## 2850 asymmetric 88 3 15
## 2851 asymmetric 93 3 15
## 2852 asymmetric 98 3 15
## 2853 asymmetric 103 3 15
## 2854 asymmetric 108 3 15
## 2855 asymmetric 113 3 15
## 2856 asymmetric 118 3 15
## 2857 asymmetric 3 3 15
## 2858 asymmetric 8 3 15
## 2859 asymmetric 13 3 15
## 2860 asymmetric 18 3 15
## 2861 asymmetric 23 3 15
## 2862 asymmetric 28 3 15
## 2863 asymmetric 33 3 15
## 2864 asymmetric 38 3 15
## 2865 asymmetric 43 3 15
## 2866 asymmetric 48 3 15
## 2867 asymmetric 53 3 15
## 2868 asymmetric 58 3 15
## 2869 asymmetric 63 3 15
## 2870 asymmetric 68 3 15
## 2871 asymmetric 73 3 15
## 2872 asymmetric 78 3 15
## 2873 asymmetric 83 3 15
## 2874 asymmetric 88 3 15
## 2875 asymmetric 93 3 15
## 2876 asymmetric 98 3 15
## 2877 asymmetric 103 3 15
## 2878 asymmetric 108 3 15
## 2879 asymmetric 113 3 15
## 2880 asymmetric 118 3 15
## 2881 asymmetric 53 4 11
## 2882 asymmetric 54 4 11
## 2883 asymmetric 55 4 11
## 2884 asymmetric 56 4 11
## 2885 asymmetric 57 4 11
## 2886 asymmetric 58 4 11
## 2887 asymmetric 61 4 11
## 2888 asymmetric 70 4 11
## 2889 asymmetric 71 4 11
## 2890 asymmetric 76 4 11
## 2891 asymmetric 77 4 11
## 2892 asymmetric 78 4 11
## 2893 asymmetric 83 4 11
## 2894 asymmetric 84 4 11
## 2895 asymmetric 85 4 11
## 2896 asymmetric 90 4 11
## 2897 asymmetric 91 4 11
## 2898 asymmetric 100 4 11
## 2899 asymmetric 103 4 11
## 2900 asymmetric 104 4 11
## 2901 asymmetric 105 4 11
## 2902 asymmetric 106 4 11
## 2903 asymmetric 107 4 11
## 2904 asymmetric 108 4 11
## 2905 asymmetric 53 4 11
## 2906 asymmetric 54 4 11
## 2907 asymmetric 55 4 11
## 2908 asymmetric 56 4 11
## 2909 asymmetric 57 4 11
## 2910 asymmetric 58 4 11
## 2911 asymmetric 61 4 11
## 2912 asymmetric 70 4 11
## 2913 asymmetric 71 4 11
## 2914 asymmetric 76 4 11
## 2915 asymmetric 77 4 11
## 2916 asymmetric 78 4 11
## 2917 asymmetric 83 4 11
## 2918 asymmetric 84 4 11
## 2919 asymmetric 85 4 11
## 2920 asymmetric 90 4 11
## 2921 asymmetric 91 4 11
## 2922 asymmetric 100 4 11
## 2923 asymmetric 103 4 11
## 2924 asymmetric 104 4 11
## 2925 asymmetric 105 4 11
## 2926 asymmetric 106 4 11
## 2927 asymmetric 107 4 11
## 2928 asymmetric 108 4 11
## 2929 asymmetric 53 4 11
## 2930 asymmetric 54 4 11
## 2931 asymmetric 55 4 11
## 2932 asymmetric 56 4 11
## 2933 asymmetric 57 4 11
## 2934 asymmetric 58 4 11
## 2935 asymmetric 61 4 11
## 2936 asymmetric 70 4 11
## 2937 asymmetric 71 4 11
## 2938 asymmetric 76 4 11
## 2939 asymmetric 77 4 11
## 2940 asymmetric 78 4 11
## 2941 asymmetric 83 4 11
## 2942 asymmetric 84 4 11
## 2943 asymmetric 85 4 11
## 2944 asymmetric 90 4 11
## 2945 asymmetric 91 4 11
## 2946 asymmetric 100 4 11
## 2947 asymmetric 103 4 11
## 2948 asymmetric 104 4 11
## 2949 asymmetric 105 4 11
## 2950 asymmetric 106 4 11
## 2951 asymmetric 107 4 11
## 2952 asymmetric 108 4 11
## 2953 asymmetric 53 4 11
## 2954 asymmetric 54 4 11
## 2955 asymmetric 55 4 11
## 2956 asymmetric 56 4 11
## 2957 asymmetric 57 4 11
## 2958 asymmetric 58 4 11
## 2959 asymmetric 61 4 11
## 2960 asymmetric 70 4 11
## 2961 asymmetric 71 4 11
## 2962 asymmetric 76 4 11
## 2963 asymmetric 77 4 11
## 2964 asymmetric 78 4 11
## 2965 asymmetric 83 4 11
## 2966 asymmetric 84 4 11
## 2967 asymmetric 85 4 11
## 2968 asymmetric 90 4 11
## 2969 asymmetric 91 4 11
## 2970 asymmetric 100 4 11
## 2971 asymmetric 103 4 11
## 2972 asymmetric 104 4 11
## 2973 asymmetric 105 4 11
## 2974 asymmetric 106 4 11
## 2975 asymmetric 107 4 11
## 2976 asymmetric 108 4 11
## 2977 asymmetric 53 4 11
## 2978 asymmetric 54 4 11
## 2979 asymmetric 55 4 11
## 2980 asymmetric 56 4 11
## 2981 asymmetric 57 4 11
## 2982 asymmetric 58 4 11
## 2983 asymmetric 61 4 11
## 2984 asymmetric 70 4 11
## 2985 asymmetric 71 4 11
## 2986 asymmetric 76 4 11
## 2987 asymmetric 77 4 11
## 2988 asymmetric 78 4 11
## 2989 asymmetric 83 4 11
## 2990 asymmetric 84 4 11
## 2991 asymmetric 85 4 11
## 2992 asymmetric 90 4 11
## 2993 asymmetric 91 4 11
## 2994 asymmetric 100 4 11
## 2995 asymmetric 103 4 11
## 2996 asymmetric 104 4 11
## 2997 asymmetric 105 4 11
## 2998 asymmetric 106 4 11
## 2999 asymmetric 107 4 11
## 3000 asymmetric 108 4 11
## 3001 asymmetric 53 4 11
## 3002 asymmetric 54 4 11
## 3003 asymmetric 55 4 11
## 3004 asymmetric 56 4 11
## 3005 asymmetric 57 4 11
## 3006 asymmetric 58 4 11
## 3007 asymmetric 61 4 11
## 3008 asymmetric 70 4 11
## 3009 asymmetric 71 4 11
## 3010 asymmetric 76 4 11
## 3011 asymmetric 77 4 11
## 3012 asymmetric 78 4 11
## 3013 asymmetric 83 4 11
## 3014 asymmetric 84 4 11
## 3015 asymmetric 85 4 11
## 3016 asymmetric 90 4 11
## 3017 asymmetric 91 4 11
## 3018 asymmetric 100 4 11
## 3019 asymmetric 103 4 11
## 3020 asymmetric 104 4 11
## 3021 asymmetric 105 4 11
## 3022 asymmetric 106 4 11
## 3023 asymmetric 107 4 11
## 3024 asymmetric 108 4 11
## 3025 asymmetric 53 4 11
## 3026 asymmetric 54 4 11
## 3027 asymmetric 55 4 11
## 3028 asymmetric 56 4 11
## 3029 asymmetric 57 4 11
## 3030 asymmetric 58 4 11
## 3031 asymmetric 61 4 11
## 3032 asymmetric 70 4 11
## 3033 asymmetric 71 4 11
## 3034 asymmetric 76 4 11
## 3035 asymmetric 77 4 11
## 3036 asymmetric 78 4 11
## 3037 asymmetric 83 4 11
## 3038 asymmetric 84 4 11
## 3039 asymmetric 85 4 11
## 3040 asymmetric 90 4 11
## 3041 asymmetric 91 4 11
## 3042 asymmetric 100 4 11
## 3043 asymmetric 103 4 11
## 3044 asymmetric 104 4 11
## 3045 asymmetric 105 4 11
## 3046 asymmetric 106 4 11
## 3047 asymmetric 107 4 11
## 3048 asymmetric 108 4 11
## 3049 asymmetric 53 4 11
## 3050 asymmetric 54 4 11
## 3051 asymmetric 55 4 11
## 3052 asymmetric 56 4 11
## 3053 asymmetric 57 4 11
## 3054 asymmetric 58 4 11
## 3055 asymmetric 61 4 11
## 3056 asymmetric 70 4 11
## 3057 asymmetric 71 4 11
## 3058 asymmetric 76 4 11
## 3059 asymmetric 77 4 11
## 3060 asymmetric 78 4 11
## 3061 asymmetric 83 4 11
## 3062 asymmetric 84 4 11
## 3063 asymmetric 85 4 11
## 3064 asymmetric 90 4 11
## 3065 asymmetric 91 4 11
## 3066 asymmetric 100 4 11
## 3067 asymmetric 103 4 11
## 3068 asymmetric 104 4 11
## 3069 asymmetric 105 4 11
## 3070 asymmetric 106 4 11
## 3071 asymmetric 107 4 11
## 3072 asymmetric 108 4 11
## 3073 asymmetric 13 4 12
## 3074 asymmetric 14 4 12
## 3075 asymmetric 15 4 12
## 3076 asymmetric 16 4 12
## 3077 asymmetric 17 4 12
## 3078 asymmetric 18 4 12
## 3079 asymmetric 21 4 12
## 3080 asymmetric 30 4 12
## 3081 asymmetric 31 4 12
## 3082 asymmetric 36 4 12
## 3083 asymmetric 37 4 12
## 3084 asymmetric 38 4 12
## 3085 asymmetric 43 4 12
## 3086 asymmetric 44 4 12
## 3087 asymmetric 45 4 12
## 3088 asymmetric 50 4 12
## 3089 asymmetric 51 4 12
## 3090 asymmetric 60 4 12
## 3091 asymmetric 63 4 12
## 3092 asymmetric 64 4 12
## 3093 asymmetric 65 4 12
## 3094 asymmetric 66 4 12
## 3095 asymmetric 67 4 12
## 3096 asymmetric 68 4 12
## 3097 asymmetric 13 4 12
## 3098 asymmetric 14 4 12
## 3099 asymmetric 15 4 12
## 3100 asymmetric 16 4 12
## 3101 asymmetric 17 4 12
## 3102 asymmetric 18 4 12
## 3103 asymmetric 21 4 12
## 3104 asymmetric 30 4 12
## 3105 asymmetric 31 4 12
## 3106 asymmetric 36 4 12
## 3107 asymmetric 37 4 12
## 3108 asymmetric 38 4 12
## 3109 asymmetric 43 4 12
## 3110 asymmetric 44 4 12
## 3111 asymmetric 45 4 12
## 3112 asymmetric 50 4 12
## 3113 asymmetric 51 4 12
## 3114 asymmetric 60 4 12
## 3115 asymmetric 63 4 12
## 3116 asymmetric 64 4 12
## 3117 asymmetric 65 4 12
## 3118 asymmetric 66 4 12
## 3119 asymmetric 67 4 12
## 3120 asymmetric 68 4 12
## 3121 asymmetric 13 4 12
## 3122 asymmetric 14 4 12
## 3123 asymmetric 15 4 12
## 3124 asymmetric 16 4 12
## 3125 asymmetric 17 4 12
## 3126 asymmetric 18 4 12
## 3127 asymmetric 21 4 12
## 3128 asymmetric 30 4 12
## 3129 asymmetric 31 4 12
## 3130 asymmetric 36 4 12
## 3131 asymmetric 37 4 12
## 3132 asymmetric 38 4 12
## 3133 asymmetric 43 4 12
## 3134 asymmetric 44 4 12
## 3135 asymmetric 45 4 12
## 3136 asymmetric 50 4 12
## 3137 asymmetric 51 4 12
## 3138 asymmetric 60 4 12
## 3139 asymmetric 63 4 12
## 3140 asymmetric 64 4 12
## 3141 asymmetric 65 4 12
## 3142 asymmetric 66 4 12
## 3143 asymmetric 67 4 12
## 3144 asymmetric 68 4 12
## 3145 asymmetric 13 4 12
## 3146 asymmetric 14 4 12
## 3147 asymmetric 15 4 12
## 3148 asymmetric 16 4 12
## 3149 asymmetric 17 4 12
## 3150 asymmetric 18 4 12
## 3151 asymmetric 21 4 12
## 3152 asymmetric 30 4 12
## 3153 asymmetric 31 4 12
## 3154 asymmetric 36 4 12
## 3155 asymmetric 37 4 12
## 3156 asymmetric 38 4 12
## 3157 asymmetric 43 4 12
## 3158 asymmetric 44 4 12
## 3159 asymmetric 45 4 12
## 3160 asymmetric 50 4 12
## 3161 asymmetric 51 4 12
## 3162 asymmetric 60 4 12
## 3163 asymmetric 63 4 12
## 3164 asymmetric 64 4 12
## 3165 asymmetric 65 4 12
## 3166 asymmetric 66 4 12
## 3167 asymmetric 67 4 12
## 3168 asymmetric 68 4 12
## 3169 asymmetric 13 4 12
## 3170 asymmetric 14 4 12
## 3171 asymmetric 15 4 12
## 3172 asymmetric 16 4 12
## 3173 asymmetric 17 4 12
## 3174 asymmetric 18 4 12
## 3175 asymmetric 21 4 12
## 3176 asymmetric 30 4 12
## 3177 asymmetric 31 4 12
## 3178 asymmetric 36 4 12
## 3179 asymmetric 37 4 12
## 3180 asymmetric 38 4 12
## 3181 asymmetric 43 4 12
## 3182 asymmetric 44 4 12
## 3183 asymmetric 45 4 12
## 3184 asymmetric 50 4 12
## 3185 asymmetric 51 4 12
## 3186 asymmetric 60 4 12
## 3187 asymmetric 63 4 12
## 3188 asymmetric 64 4 12
## 3189 asymmetric 65 4 12
## 3190 asymmetric 66 4 12
## 3191 asymmetric 67 4 12
## 3192 asymmetric 68 4 12
## 3193 asymmetric 13 4 12
## 3194 asymmetric 14 4 12
## 3195 asymmetric 15 4 12
## 3196 asymmetric 16 4 12
## 3197 asymmetric 17 4 12
## 3198 asymmetric 18 4 12
## 3199 asymmetric 21 4 12
## 3200 asymmetric 30 4 12
## 3201 asymmetric 31 4 12
## 3202 asymmetric 36 4 12
## 3203 asymmetric 37 4 12
## 3204 asymmetric 38 4 12
## 3205 asymmetric 43 4 12
## 3206 asymmetric 44 4 12
## 3207 asymmetric 45 4 12
## 3208 asymmetric 50 4 12
## 3209 asymmetric 51 4 12
## 3210 asymmetric 60 4 12
## 3211 asymmetric 63 4 12
## 3212 asymmetric 64 4 12
## 3213 asymmetric 65 4 12
## 3214 asymmetric 66 4 12
## 3215 asymmetric 67 4 12
## 3216 asymmetric 68 4 12
## 3217 asymmetric 13 4 12
## 3218 asymmetric 14 4 12
## 3219 asymmetric 15 4 12
## 3220 asymmetric 16 4 12
## 3221 asymmetric 17 4 12
## 3222 asymmetric 18 4 12
## 3223 asymmetric 21 4 12
## 3224 asymmetric 30 4 12
## 3225 asymmetric 31 4 12
## [ reached 'max' / getOption("max.print") -- omitted 6695 rows ]
Here I’m filtering patches to have only the ones with disturbance low.
#Filter data sets according to the global disturbance
ds_individuals = ds_individuals %>%
filter(disturbance == disturbance_global_input)
ds_patches = ds_patches %>%
filter(disturbance == disturbance_global_input)
ds_patches_effect_size = ds_patches_effect_size %>%
filter(disturbance == disturbance_global_input)
ds_metaecosystems = ds_metaecosystems %>%
filter(disturbance == disturbance_global_input)
ds_classes = ds_classes %>%
filter(disturbance == disturbance_global_input)
ds_classes_effect_size = ds_classes_effect_size %>%
filter(disturbance == disturbance_global_input)
metaecosystem_type_i = c("Small-Small meta-ecosystem",
"Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Large-Large meta-ecosystem",
"Small-Large meta-ecosystem",
"Small-Large isolated")
response_variable = "total_metaecosystem_bioarea_mm2"
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "mean_shannon"
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "bray_curtis"
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "metaecosystem_richness"
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "total_metaecosystem_bioarea_mm2"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Small-Large meta-ecosystem")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_symmetry and
patch_size_symmetry : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
patch_size_symmetry : day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula:
## get(response_variable) ~ day + patch_size_symmetry + patch_size_symmetry:day +
## (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 612.0 628.8 -298.0 596.0 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.78 -0.53 0.01 0.55 2.56
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 1e+02 10.5
## day 3e-02 0.2 -1.00
## Residual 1e+03 34.0
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 233.9 18.1 24.3 12.9 2e-12 ***
## day -6.7 0.9 45.7 -7.4 3e-09 ***
## patch_size_symmetrysymmetric 37.6 25.6 24.3 1.5 0.2
## day:patch_size_symmetrysymmetric -1.1 1.3 45.7 -0.9 0.4
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.920
## ptch_sz_sym -0.707 0.651
## dy:ptch_sz_ 0.651 -0.707 -0.920
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.9 0.207 none
patch_size_symmetry)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_symmetry + (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 610.8 625.4 -298.4 596.8 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.74 -0.56 0.03 0.58 2.37
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 1e+02 10.9
## day 4e-02 0.2 -1.00
## Residual 1e+03 34.2
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 244.2 13.9 23.9 18 3e-15 ***
## day -7.3 0.6 43.0 -11 2e-14 ***
## patch_size_symmetrysymmetric 17.0 10.0 10.3 2 0.1
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.860
## ptch_sz_sym -0.361 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.4 0.122 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.8e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -7.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.5e-04
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -7.0e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -9.0e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.0e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.7e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -9.5e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -3.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.0e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -9.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.3e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.0e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -8.8e-02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.7e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.8e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e-02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.7e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.0e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -8.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.0e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -8.8e-02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -8.5e-02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -2.0e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -4.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.5e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -8.3e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.6e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.8e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -1.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.5 0.105 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1004 1010 1012 1016 1023 -0.92627989
## 2 1001 1010 1013 1019 1022 -0.92194721
## 3 1002 1010 1011 1019 1023 -0.89185553
## 4 1001 1010 1012 1019 1023 -0.88284718
## 5 1004 1010 1011 1017 1023 -0.87435072
## 6 1001 1010 1014 1017 1023 -0.84078618
## 7 1002 1010 1014 1016 1023 -0.84063425
## 8 1004 1010 1011 1018 1022 -0.82425333
## 9 1002 1008 1014 1016 1025 -0.81977787
## 10 1002 1008 1011 1019 1025 -0.81768418
## 11 1001 1008 1014 1017 1025 -0.81140017
## 12 1001 1008 1012 1019 1025 -0.80370441
## 13 1004 1010 1012 1018 1021 -0.79621450
## 14 1004 1008 1011 1017 1025 -0.79244497
## 15 1004 1008 1012 1016 1025 -0.78410015
## 16 1004 1007 1013 1016 1025 -0.77541657
## 17 1002 1010 1013 1019 1021 -0.76954554
## 18 1004 1010 1013 1017 1021 -0.76313103
## 19 1004 1010 1013 1016 1022 -0.74894995
## 20 1002 1006 1013 1019 1025 -0.74485229
## 21 1003 1010 1012 1019 1021 -0.73502495
## 22 1003 1010 1011 1019 1022 -0.72651017
## 23 1002 1010 1014 1018 1021 -0.69591543
## 24 1003 1010 1014 1017 1021 -0.69505526
## 25 1001 1010 1014 1018 1022 -0.68099063
## 26 1001 1007 1014 1020 1023 -0.68067240
## 27 1003 1010 1014 1016 1022 -0.67967352
## 28 1001 1007 1015 1019 1023 -0.67772504
## 29 1004 1006 1013 1017 1025 -0.66379182
## 30 1004 1006 1012 1018 1025 -0.64501046
## 31 1005 1007 1014 1016 1023 -0.64333629
## 32 1001 1007 1013 1019 1025 -0.64002588
## 33 1003 1006 1012 1019 1025 -0.63557902
## 34 1004 1007 1011 1018 1025 -0.63088882
## 35 1002 1008 1015 1019 1021 -0.62702321
## 36 1002 1006 1015 1019 1023 -0.62646971
## 37 1005 1007 1011 1019 1023 -0.62391197
## 38 1001 1008 1015 1019 1022 -0.62293486
## 39 1003 1007 1011 1019 1025 -0.61984431
## 40 1002 1006 1014 1018 1025 -0.60906854
## 41 1004 1008 1015 1016 1022 -0.60592069
## 42 1001 1010 1012 1018 1024 -0.60590850
## 43 1003 1006 1014 1017 1025 -0.60439690
## 44 1004 1008 1015 1017 1021 -0.59406116
## 45 1001 1007 1014 1018 1025 -0.59338163
## 46 1003 1007 1014 1016 1025 -0.58832473
## 47 1005 1008 1014 1016 1022 -0.58579153
## 48 1005 1008 1011 1019 1022 -0.58548095
## 49 1005 1006 1014 1017 1023 -0.58496490
## 50 1004 1006 1015 1017 1023 -0.58426010
## 51 1001 1009 1013 1017 1025 -0.58343834
## 52 1005 1007 1014 1018 1021 -0.58254171
## 53 1003 1010 1011 1017 1024 -0.57912974
## 54 1004 1007 1015 1016 1023 -0.57899168
## 55 1004 1008 1011 1020 1022 -0.57788109
## 56 1005 1008 1014 1017 1021 -0.57389144
## 57 1003 1010 1012 1016 1024 -0.56819806
## 58 1005 1008 1012 1019 1021 -0.56324710
## 59 1004 1008 1012 1020 1021 -0.56052857
## 60 1005 1007 1013 1019 1021 -0.55707196
## 61 1002 1009 1013 1016 1025 -0.55634299
## 62 1004 1007 1011 1020 1023 -0.55496756
## 63 1003 1007 1015 1019 1021 -0.54985950
## 64 1005 1006 1012 1019 1023 -0.54923920
## 65 1002 1006 1014 1020 1023 -0.53388522
## 66 1001 1009 1013 1020 1022 -0.51570048
## 67 1005 1006 1013 1019 1022 -0.51091045
## 68 1002 1009 1013 1020 1021 -0.51038212
## 69 1003 1006 1015 1019 1022 -0.50953169
## 70 1002 1010 1013 1016 1024 -0.49051453
## 71 1001 1010 1013 1017 1024 -0.49047582
## 72 1001 1009 1015 1017 1023 -0.48313254
## 73 1002 1009 1015 1016 1023 -0.48286001
## 74 1002 1010 1011 1018 1024 -0.47146211
## 75 1004 1006 1015 1018 1022 -0.46582286
## 76 1004 1007 1015 1018 1021 -0.46202535
## 77 1001 1008 1014 1020 1022 -0.46179867
## 78 1001 1009 1015 1018 1022 -0.46055774
## 79 1004 1006 1013 1020 1022 -0.45784165
## 80 1004 1007 1013 1020 1021 -0.45462893
## 81 1005 1009 1013 1016 1022 -0.45427478
## 82 1002 1008 1014 1020 1021 -0.45341845
## 83 1005 1009 1013 1017 1021 -0.45029358
## 84 1003 1007 1011 1020 1024 -0.44064689
## 85 1002 1008 1015 1016 1024 -0.43341035
## 86 1001 1008 1015 1017 1024 -0.42867661
## 87 1004 1006 1012 1020 1023 -0.40742238
## 88 1003 1007 1014 1020 1021 -0.40688031
## 89 1005 1006 1014 1018 1022 -0.40575107
## 90 1003 1006 1014 1020 1022 -0.40050484
## 91 1002 1006 1013 1020 1024 -0.39965899
## 92 1002 1006 1015 1018 1024 -0.37661727
## 93 1002 1008 1011 1020 1024 -0.36814997
## 94 1003 1006 1012 1020 1024 -0.36224010
## 95 1005 1006 1013 1017 1024 -0.35972735
## 96 1003 1006 1015 1017 1024 -0.34952617
## 97 1001 1008 1012 1020 1024 -0.34155563
## 98 1002 1009 1011 1018 1025 -0.33045400
## 99 1005 1008 1011 1017 1024 -0.32708879
## 100 1003 1009 1011 1017 1025 -0.32117455
## 101 1003 1009 1012 1016 1025 -0.31198903
## 102 1001 1009 1012 1018 1025 -0.30792392
## 103 1005 1008 1012 1016 1024 -0.30362170
## 104 1001 1009 1012 1020 1023 -0.26376699
## 105 1002 1009 1011 1020 1023 -0.26186607
## 106 1005 1009 1012 1016 1023 -0.25049849
## 107 1005 1009 1011 1017 1023 -0.25047788
## 108 1003 1007 1015 1016 1024 -0.22664344
## 109 1005 1007 1013 1016 1024 -0.21734352
## 110 1005 1006 1012 1018 1024 -0.21288844
## 111 1003 1009 1015 1017 1021 -0.19180395
## 112 1002 1009 1015 1018 1021 -0.17119465
## 113 1003 1009 1012 1020 1021 -0.16699839
## 114 1005 1009 1012 1018 1021 -0.16241706
## 115 1003 1009 1015 1016 1022 -0.15771439
## 116 1003 1009 1011 1020 1022 -0.15173440
## 117 1005 1007 1011 1018 1024 -0.14928012
## 118 1005 1009 1011 1018 1022 -0.14298440
## 119 1001 1007 1013 1020 1024 -0.10287060
## 120 1001 1007 1015 1018 1024 -0.07807924
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.7 0.264 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.2 0.078 * weak
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1051 1054 -1.92651033
## 2 1054 1051 -1.92651033
## 3 1050 1055 -1.84623870
## 4 1055 1050 -1.84623870
## 5 1052 1053 -1.74248955
## 6 1053 1052 -1.74248955
## 7 1047 1051 -1.64874878
## 8 1051 1047 -1.64874878
## 9 1047 1055 -1.57909579
## 10 1055 1047 -1.57909579
## 11 1047 1052 -1.45439502
## 12 1052 1047 -1.45439502
## 13 1048 1050 -1.43231868
## 14 1050 1048 -1.43231868
## 15 1048 1054 -1.41715448
## 16 1054 1048 -1.41715448
## 17 1046 1053 -1.32907802
## 18 1053 1046 -1.32907802
## 19 1046 1054 -1.29569680
## 20 1054 1046 -1.29569680
## 21 1049 1053 -1.21633078
## 22 1053 1049 -1.21633078
## 23 1049 1050 -1.19859008
## 24 1050 1049 -1.19859008
## 25 1048 1052 -0.04237190
## 26 1052 1048 -0.04237190
## 27 1046 1055 -0.03078654
## 28 1055 1046 -0.03078654
## 29 1049 1051 0.02308620
## 30 1051 1049 0.02308620
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.1 0.026 ** moderate
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "mean_shannon"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Small-Large meta-ecosystem")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_symmetry and
patch_size_symmetry : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
patch_size_symmetry : day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula:
## get(response_variable) ~ day + patch_size_symmetry + patch_size_symmetry:day +
## (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -12.6 4.2 14.3 -28.6 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 0.1 0.7 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 9e-03 0.092
## day 3e-06 0.002 -1.00
## Residual 3e-02 0.183
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.340 0.103 19.481 13.0 4e-11
## day 0.003 0.005 39.884 0.7 0.5
## patch_size_symmetrysymmetric 0.022 0.145 19.481 0.1 0.9
## day:patch_size_symmetrysymmetric -0.005 0.007 39.884 -0.7 0.5
##
## (Intercept) ***
## day
## patch_size_symmetrysymmetric
## day:patch_size_symmetrysymmetric
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.910
## ptch_sz_sym -0.707 0.644
## dy:ptch_sz_ 0.644 -0.707 -0.910
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.5 0.464 none
patch_size_symmetry)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_symmetry + (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -14.2 0.5 14.1 -28.2 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.6 0.1 0.7 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 9e-03 0.094
## day 4e-06 0.002 -1.00
## Residual 3e-02 0.183
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.383 0.079 21.073 17.5 5e-14 ***
## day 0.001 0.004 38.497 0.3 0.7
## patch_size_symmetrysymmetric -0.065 0.060 10.623 -1.1 0.3
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.843
## ptch_sz_sym -0.381 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.9 0.293 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.1e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.5e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.6e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.7e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.8e-02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.6e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.8e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.9e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.8e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.0e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -9.5e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+03
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.5e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.1e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.1e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -8.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.5e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.7e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.1e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.6e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.1e+02
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -9.4 0.002 *** strong
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1004 1008 1015 1016 1022 -19.249457
## 2 1005 1007 1011 1019 1023 -17.020063
## 3 1005 1007 1013 1019 1021 -16.984911
## 4 1005 1006 1013 1017 1024 -15.299917
## 5 1001 1010 1014 1018 1022 -13.462412
## 6 1001 1007 1014 1018 1025 -13.461151
## 7 1003 1010 1014 1016 1022 -13.105110
## 8 1001 1009 1012 1018 1025 -13.030802
## 9 1003 1007 1014 1016 1025 -13.028598
## 10 1001 1010 1012 1018 1024 -12.983783
## 11 1004 1007 1011 1018 1025 -12.872192
## 12 1004 1010 1011 1018 1022 -12.792253
## 13 1003 1010 1012 1016 1024 -12.672256
## 14 1003 1009 1012 1016 1025 -12.520275
## 15 1002 1010 1011 1018 1024 -12.453324
## 16 1001 1009 1015 1018 1022 -12.332001
## 17 1005 1009 1011 1018 1022 -12.330034
## 18 1002 1009 1011 1018 1025 -12.283299
## 19 1004 1007 1013 1016 1025 -11.957878
## 20 1003 1009 1015 1016 1022 -11.918491
## 21 1004 1010 1013 1016 1022 -11.898049
## 22 1001 1007 1015 1018 1024 -11.850347
## 23 1005 1007 1011 1018 1024 -11.647281
## 24 1003 1007 1015 1016 1024 -11.568210
## 25 1002 1010 1013 1016 1024 -11.529644
## 26 1005 1009 1013 1016 1022 -11.348359
## 27 1003 1007 1011 1019 1025 -11.346753
## 28 1002 1009 1013 1016 1025 -11.341393
## 29 1003 1010 1011 1019 1022 -11.255111
## 30 1001 1007 1013 1019 1025 -11.003809
## 31 1001 1010 1013 1019 1022 -10.920166
## 32 1005 1007 1013 1016 1024 -10.854462
## 33 1004 1006 1012 1018 1025 -10.652597
## 34 1002 1010 1014 1018 1021 -10.519464
## 35 1004 1010 1012 1018 1021 -10.516555
## 36 1002 1006 1014 1018 1025 -10.447518
## 37 1003 1010 1011 1017 1024 -10.413239
## 38 1005 1009 1012 1018 1021 -10.351110
## 39 1003 1009 1011 1017 1025 -10.272903
## 40 1001 1010 1013 1017 1024 -10.042969
## 41 1005 1006 1014 1018 1022 -10.011042
## 42 1005 1006 1012 1018 1024 -10.008257
## 43 1002 1009 1015 1018 1021 -9.985341
## 44 1001 1009 1013 1017 1025 -9.981875
## 45 1005 1007 1014 1018 1021 -9.952512
## 46 1003 1009 1011 1020 1022 -9.892339
## 47 1004 1006 1015 1018 1022 -9.842749
## 48 1003 1006 1012 1019 1025 -9.807286
## 49 1004 1007 1015 1018 1021 -9.786107
## 50 1002 1006 1015 1018 1024 -9.708343
## 51 1003 1007 1011 1020 1024 -9.642038
## 52 1001 1009 1013 1020 1022 -9.469370
## 53 1004 1008 1012 1016 1025 -9.394285
## 54 1003 1010 1012 1019 1021 -9.329551
## 55 1001 1007 1013 1020 1024 -9.234592
## 56 1003 1006 1014 1017 1025 -9.153448
## 57 1001 1008 1012 1019 1025 -9.111903
## 58 1004 1010 1012 1016 1023 -9.082423
## 59 1002 1010 1014 1016 1023 -8.975994
## 60 1003 1010 1014 1017 1021 -8.856601
## 61 1003 1006 1015 1019 1022 -8.741857
## 62 1003 1007 1015 1019 1021 -8.593798
## 63 1005 1009 1012 1016 1023 -8.589662
## 64 1001 1008 1014 1017 1025 -8.497198
## 65 1004 1007 1015 1016 1023 -8.478950
## 66 1005 1007 1014 1016 1023 -8.456976
## 67 1005 1008 1014 1016 1022 -8.446301
## 68 1004 1006 1013 1017 1025 -8.440749
## 69 1002 1010 1013 1019 1021 -8.426875
## 70 1002 1008 1011 1019 1025 -8.411446
## 71 1005 1008 1012 1016 1024 -8.401542
## 72 1002 1009 1015 1016 1023 -8.384876
## 73 1002 1008 1015 1016 1024 -8.267571
## 74 1002 1008 1014 1016 1025 -8.251191
## 75 1004 1010 1013 1017 1021 -8.214667
## 76 1003 1009 1012 1020 1021 -8.203788
## 77 1003 1009 1015 1017 1021 -8.137319
## 78 1001 1008 1015 1019 1022 -8.114672
## 79 1003 1006 1015 1017 1024 -8.093688
## 80 1001 1010 1014 1017 1023 -8.087881
## 81 1004 1008 1011 1017 1025 -8.079184
## 82 1003 1007 1014 1020 1021 -8.061842
## 83 1003 1006 1014 1020 1022 -7.963107
## 84 1002 1010 1011 1019 1023 -7.921859
## 85 1001 1007 1015 1019 1023 -7.854816
## 86 1002 1009 1013 1020 1021 -7.848309
## 87 1005 1009 1013 1017 1021 -7.830720
## 88 1005 1006 1013 1019 1022 -7.795816
## 89 1003 1006 1012 1020 1024 -7.750362
## 90 1004 1010 1011 1017 1023 -7.711369
## 91 1002 1006 1013 1020 1024 -7.508292
## 92 1004 1007 1013 1020 1021 -7.439012
## 93 1001 1010 1012 1019 1023 -7.377810
## 94 1004 1006 1013 1020 1022 -7.377590
## 95 1001 1008 1015 1017 1024 -7.351056
## 96 1001 1009 1015 1017 1023 -7.339624
## 97 1005 1008 1011 1019 1022 -7.280906
## 98 1001 1009 1012 1020 1023 -7.229004
## 99 1001 1007 1014 1020 1023 -7.224164
## 100 1001 1008 1014 1020 1022 -7.195944
## 101 1005 1009 1011 1017 1023 -7.146015
## 102 1002 1009 1011 1020 1023 -7.108867
## 103 1001 1008 1012 1020 1024 -7.093905
## 104 1005 1008 1011 1017 1024 -6.980639
## 105 1002 1006 1013 1019 1025 -6.917538
## 106 1004 1007 1011 1020 1023 -6.894940
## 107 1002 1008 1015 1019 1021 -6.479077
## 108 1004 1008 1015 1017 1021 -6.291151
## 109 1004 1006 1015 1017 1023 -6.240906
## 110 1005 1008 1012 1019 1021 -6.226379
## 111 1005 1006 1012 1019 1023 -6.197888
## 112 1005 1008 1014 1017 1021 -6.018750
## 113 1002 1008 1011 1020 1024 -5.888738
## 114 1004 1008 1012 1020 1021 -5.863729
## 115 1004 1006 1012 1020 1023 -5.856217
## 116 1002 1006 1014 1020 1023 -5.843640
## 117 1002 1008 1014 1020 1021 -5.833166
## 118 1004 1008 1011 1020 1022 -4.867119
## 119 1005 1006 1014 1017 1023 -4.268147
## 120 1002 1006 1015 1019 1023 -2.912301
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.483 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.9 0.591 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1048 1054 2.250274
## 2 1054 1048 2.250274
## 3 1048 1050 2.252695
## 4 1050 1048 2.252695
## 5 1046 1053 2.329635
## 6 1053 1046 2.329635
## 7 1047 1051 2.383022
## 8 1051 1047 2.383022
## 9 1049 1053 2.417776
## 10 1053 1049 2.417776
## 11 1047 1055 2.531994
## 12 1055 1047 2.531994
## 13 1046 1054 2.677725
## 14 1054 1046 2.677725
## 15 1049 1050 2.768293
## 16 1050 1049 2.768293
## 17 1047 1052 2.932105
## 18 1052 1047 2.932105
## 19 1051 1054 3.103515
## 20 1054 1051 3.103515
## 21 1050 1055 3.167263
## 22 1055 1050 3.167263
## 23 1052 1053 3.237364
## 24 1053 1052 3.237364
## 25 1049 1051 3.697185
## 26 1051 1049 3.697185
## 27 1046 1055 3.706302
## 28 1055 1046 3.706302
## 29 1048 1052 3.711991
## 30 1052 1048 3.711991
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.788 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "bray_curtis"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Small-Large meta-ecosystem")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_symmetry and
patch_size_symmetry : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
patch_size_symmetry : day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula:
## get(response_variable) ~ day + patch_size_symmetry + patch_size_symmetry:day +
## (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -68.4 -51.6 42.2 -84.4 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.33 -0.58 -0.03 0.63 2.01
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 3e-13 5e-07
## day 9e-16 3e-08 -1.00
## Residual 1e-02 1e-01
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.360 0.062 60.000 5.8 2e-07
## day 0.007 0.003 60.000 2.1 0.04
## patch_size_symmetrysymmetric 0.047 0.087 60.000 0.5 0.59
## day:patch_size_symmetrysymmetric -0.006 0.005 60.000 -1.3 0.21
##
## (Intercept) ***
## day *
## patch_size_symmetrysymmetric
## day:patch_size_symmetrysymmetric
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.935
## ptch_sz_sym -0.707 0.661
## dy:ptch_sz_ 0.661 -0.707 -0.935
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.6 0.099 * weak
patch_size_symmetry)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_symmetry + (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -68.8 -54.1 41.4 -82.8 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.54 -0.67 -0.04 0.66 1.93
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 6e-13 8e-07
## day 1e-15 3e-08 -1.00
## Residual 1e-02 1e-01
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.411 0.047 60.000 9 2e-12 ***
## day 0.004 0.002 60.000 2 0.10 .
## patch_size_symmetrysymmetric -0.056 0.031 60.000 -2 0.08 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.881
## ptch_sz_sym -0.334 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.1 0.08 * weak
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.5e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.5e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.3e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.7e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.1e-02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.1e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.9e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.5e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.1e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.8e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.7e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.6e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## unable to evaluate scaled gradient
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge: degenerate Hessian with 1 negative eigenvalues
## Warning: Model failed to converge with 1 negative eigenvalue: -3.8e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.4e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -12.4 0.007 *** strong
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1003 1007 1015 1016 1024 -23.6032253
## 2 1002 1008 1015 1016 1024 -22.3439447
## 3 1005 1008 1012 1016 1024 -22.2510431
## 4 1005 1008 1011 1019 1022 -21.2082743
## 5 1005 1006 1013 1019 1022 -20.6450651
## 6 1003 1010 1011 1019 1022 -19.9619334
## 7 1001 1007 1013 1019 1025 -19.7922111
## 8 1002 1006 1013 1019 1025 -19.4185919
## 9 1005 1007 1011 1018 1024 -19.3463546
## 10 1003 1007 1011 1020 1024 -19.1386767
## 11 1002 1008 1015 1019 1021 -19.0089440
## 12 1002 1008 1011 1020 1024 -18.3564894
## 13 1002 1010 1011 1018 1024 -18.3193147
## 14 1005 1008 1011 1017 1024 -18.2289310
## 15 1005 1007 1013 1016 1024 -18.1285187
## 16 1003 1010 1011 1017 1024 -17.9028991
## 17 1003 1010 1012 1019 1021 -17.7820316
## 18 1001 1007 1013 1020 1024 -17.5583143
## 19 1002 1006 1013 1020 1024 -17.4044416
## 20 1001 1007 1015 1018 1024 -17.3703409
## 21 1002 1006 1015 1018 1024 -17.2704297
## 22 1005 1006 1013 1017 1024 -17.2440605
## 23 1002 1010 1013 1016 1024 -17.1188911
## 24 1005 1006 1012 1018 1024 -17.1174820
## 25 1003 1006 1012 1020 1024 -17.0081684
## 26 1002 1009 1015 1018 1021 -16.9812430
## 27 1003 1006 1015 1017 1024 -16.9347849
## 28 1004 1006 1015 1018 1022 -16.8607485
## 29 1003 1010 1012 1016 1024 -16.8123348
## 30 1002 1009 1015 1016 1023 -16.7612477
## 31 1005 1009 1012 1018 1021 -16.6485319
## 32 1001 1010 1013 1017 1024 -16.5039406
## 33 1001 1008 1012 1020 1024 -16.4769424
## 34 1001 1010 1012 1018 1024 -16.4289791
## 35 1001 1008 1015 1017 1024 -16.4088006
## 36 1004 1007 1013 1016 1025 -16.3410232
## 37 1001 1009 1015 1017 1023 -15.9373692
## 38 1005 1006 1014 1018 1022 -15.2619106
## 39 1003 1007 1014 1016 1025 -14.8284133
## 40 1003 1010 1014 1016 1022 -14.5355625
## 41 1001 1008 1014 1020 1022 -14.5155532
## 42 1001 1007 1014 1018 1025 -14.4583717
## 43 1003 1007 1011 1019 1025 -14.1882582
## 44 1005 1007 1013 1019 1021 -14.1263198
## 45 1004 1010 1012 1016 1023 -14.0523185
## 46 1003 1007 1015 1019 1021 -13.9325971
## 47 1005 1007 1014 1018 1021 -13.8480044
## 48 1002 1008 1011 1019 1025 -13.8315706
## 49 1002 1010 1013 1019 1021 -13.8167285
## 50 1001 1007 1014 1020 1023 -13.5917284
## 51 1005 1007 1011 1019 1023 -13.3398966
## 52 1003 1006 1015 1019 1022 -13.2539201
## 53 1005 1008 1012 1019 1021 -13.2038251
## 54 1003 1006 1012 1019 1025 -13.1804566
## 55 1002 1010 1011 1019 1023 -13.0049436
## 56 1001 1010 1013 1019 1022 -12.8601572
## 57 1001 1008 1015 1019 1022 -12.5344105
## 58 1005 1009 1011 1018 1022 -12.4779641
## 59 1002 1009 1011 1018 1025 -12.4220539
## 60 1003 1009 1011 1020 1022 -12.4110411
## 61 1002 1009 1013 1020 1021 -12.4007121
## 62 1001 1008 1012 1019 1025 -12.3920125
## 63 1002 1006 1015 1019 1023 -12.3894220
## 64 1003 1009 1011 1017 1025 -12.2646293
## 65 1005 1009 1013 1017 1021 -12.1939510
## 66 1005 1006 1012 1019 1023 -12.0869860
## 67 1003 1009 1012 1020 1021 -11.9974231
## 68 1003 1009 1015 1017 1021 -11.9857526
## 69 1001 1007 1015 1019 1023 -11.9330563
## 70 1002 1009 1013 1016 1025 -11.7566153
## 71 1002 1009 1011 1020 1023 -11.6341627
## 72 1005 1009 1013 1016 1022 -11.5897457
## 73 1001 1010 1012 1019 1023 -11.5394740
## 74 1003 1009 1012 1016 1025 -11.5007515
## 75 1001 1009 1013 1020 1022 -11.4343658
## 76 1005 1009 1011 1017 1023 -11.3995681
## 77 1003 1009 1015 1016 1022 -11.3951793
## 78 1001 1009 1013 1017 1025 -11.3487519
## 79 1001 1009 1015 1018 1022 -11.1684533
## 80 1001 1009 1012 1018 1025 -11.1293018
## 81 1005 1009 1012 1016 1023 -10.4671771
## 82 1001 1009 1012 1020 1023 -10.3425093
## 83 1003 1007 1014 1020 1021 -9.8142296
## 84 1003 1006 1014 1020 1022 -9.7527196
## 85 1002 1006 1014 1018 1025 -9.5720835
## 86 1002 1010 1014 1018 1021 -9.5506955
## 87 1002 1008 1014 1020 1021 -9.5111077
## 88 1003 1006 1014 1017 1025 -9.4071616
## 89 1002 1008 1014 1016 1025 -9.3819928
## 90 1005 1008 1014 1016 1022 -9.3195634
## 91 1003 1010 1014 1017 1021 -9.3064732
## 92 1001 1010 1014 1018 1022 -9.2439662
## 93 1005 1008 1014 1017 1021 -9.2187726
## 94 1002 1006 1014 1020 1023 -8.9893260
## 95 1001 1008 1014 1017 1025 -8.8180065
## 96 1005 1007 1014 1016 1023 -8.8136450
## 97 1002 1010 1014 1016 1023 -8.7412800
## 98 1005 1006 1014 1017 1023 -8.6489524
## 99 1001 1010 1014 1017 1023 -8.2893284
## 100 1004 1010 1011 1018 1022 -5.6962742
## 101 1004 1007 1011 1018 1025 -5.6855647
## 102 1004 1008 1011 1020 1022 -5.6382083
## 103 1004 1007 1011 1020 1023 -5.4994234
## 104 1004 1008 1011 1017 1025 -5.2449966
## 105 1004 1007 1013 1020 1021 -5.1384486
## 106 1004 1010 1011 1017 1023 -5.1268641
## 107 1004 1007 1015 1018 1021 -4.8776450
## 108 1004 1010 1013 1017 1021 -4.8303304
## 109 1004 1010 1013 1016 1022 -4.6567662
## 110 1004 1008 1015 1017 1021 -4.5459723
## 111 1004 1010 1012 1018 1021 -4.5143183
## 112 1004 1008 1012 1020 1021 -4.4532780
## 113 1004 1008 1015 1016 1022 -4.3798257
## 114 1004 1006 1012 1018 1025 -4.3630675
## 115 1004 1007 1015 1016 1023 -4.1999584
## 116 1004 1006 1012 1020 1023 -4.1700004
## 117 1004 1008 1012 1016 1025 -4.0607610
## 118 1004 1006 1013 1017 1025 0.5317163
## 119 1004 1006 1013 1020 1022 0.8298978
## 120 1004 1006 1015 1017 1023 1.1434381
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.6 0.075 * weak
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.8 0.308 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1047 1052 -2.9518507
## 2 1052 1047 -2.9518507
## 3 1050 1055 -2.1310860
## 4 1055 1050 -2.1310860
## 5 1047 1051 -2.0992457
## 6 1051 1047 -2.0992457
## 7 1047 1055 -1.6448276
## 8 1055 1047 -1.6448276
## 9 1052 1053 -1.3285235
## 10 1053 1052 -1.3285235
## 11 1046 1055 0.3823059
## 12 1055 1046 0.3823059
## 13 1048 1050 1.6910361
## 14 1050 1048 1.6910361
## 15 1046 1053 1.8190972
## 16 1053 1046 1.8190972
## 17 1049 1051 1.9617634
## 18 1051 1049 1.9617634
## 19 1051 1054 1.9863126
## 20 1054 1051 1.9863126
## 21 1049 1053 2.0137185
## 22 1053 1049 2.0137185
## 23 1049 1050 2.0657045
## 24 1050 1049 2.0657045
## 25 1048 1052 2.5035401
## 26 1052 1048 2.5035401
## 27 1046 1054 3.1677620
## 28 1054 1046 3.1677620
## 29 1048 1054 3.8923779
## 30 1054 1048 3.8923779
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.5 0.236 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "metaecosystem_richness"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.boxplots(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Small-Large meta-ecosystem")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_symmetry and
patch_size_symmetry : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
patch_size_symmetry : day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula:
## get(response_variable) ~ day + patch_size_symmetry + patch_size_symmetry:day +
## (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 206.3 223.1 -95.2 190.3 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 0.1 0.7 1.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 0.053 0.23
## day 0.002 0.04 -1.00
## Residual 1.181 1.09
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8.08 0.57 38.23 14.2 <2e-16 ***
## day -0.01 0.03 15.06 -0.3 0.8
## patch_size_symmetrysymmetric 0.46 0.80 38.23 0.6 0.6
## day:patch_size_symmetrysymmetric -0.01 0.05 15.06 -0.3 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.874
## ptch_sz_sym -0.707 0.618
## dy:ptch_sz_ 0.618 -0.707 -0.874
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.4 0.752 none
patch_size_symmetry)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_symmetry +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_symmetry + (day | system_nr)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 204.4 219.0 -95.2 190.4 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 0.1 0.7 1.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## system_nr (Intercept) 0.055 0.24
## day 0.002 0.04 -1.00
## Residual 1.182 1.09
## Number of obs: 60, groups: system_nr, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8.17 0.45 55.73 18.3 <2e-16 ***
## day -0.02 0.02 14.96 -0.7 0.5
## patch_size_symmetrysymmetric 0.28 0.39 13.55 0.7 0.5
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.786
## ptch_sz_sym -0.437 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$system_nr, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$metaecosystem_type, "<br>",
"Tot Biomass: ", round(filtered_data$total_metaecosystem_bioarea_mm2, digits = 0), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.5 0.479 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -9.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -8.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -9.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.1e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.0e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.8e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.1e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -9.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.8e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.2 0.432 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1002 1009 1013 1016 1025 0.5010946
## 2 1002 1010 1013 1016 1024 0.5570386
## 3 1003 1007 1014 1016 1025 0.6254584
## 4 1005 1007 1013 1016 1024 0.9638950
## 5 1002 1009 1013 1020 1021 0.9759178
## 6 1003 1007 1014 1020 1021 1.1759537
## 7 1002 1006 1013 1020 1024 1.2012104
## 8 1003 1010 1014 1016 1022 1.2401001
## 9 1002 1006 1013 1019 1025 1.2794401
## 10 1002 1010 1013 1019 1021 1.3088651
## 11 1002 1008 1014 1016 1025 1.3159753
## 12 1005 1007 1013 1019 1021 1.3701184
## 13 1005 1009 1013 1016 1022 1.4030246
## 14 1004 1007 1013 1016 1025 1.4352352
## 15 1005 1007 1014 1018 1021 1.4939106
## 16 1002 1010 1014 1018 1021 1.4959565
## 17 1003 1007 1011 1019 1025 1.5059323
## 18 1002 1009 1011 1018 1025 1.5389815
## 19 1002 1006 1014 1018 1025 1.5660723
## 20 1002 1010 1011 1018 1024 1.5673278
## 21 1003 1007 1011 1020 1024 1.5689721
## 22 1001 1007 1013 1019 1025 1.6118521
## 23 1001 1007 1013 1020 1024 1.6227912
## 24 1003 1010 1014 1017 1021 1.6749332
## 25 1003 1006 1012 1020 1024 1.6976609
## 26 1005 1006 1012 1018 1024 1.7255034
## 27 1003 1006 1014 1020 1022 1.7425675
## 28 1003 1006 1014 1017 1025 1.7474833
## 29 1001 1007 1014 1018 1025 1.7954154
## 30 1002 1008 1014 1020 1021 1.7989294
## 31 1005 1008 1014 1016 1022 1.8140579
## 32 1002 1010 1014 1016 1023 1.8221258
## 33 1005 1007 1014 1016 1023 1.8243680
## 34 1004 1007 1013 1020 1021 1.8683582
## 35 1005 1007 1011 1018 1024 1.8980400
## 36 1002 1008 1011 1020 1024 1.9284091
## 37 1005 1009 1013 1017 1021 1.9322277
## 38 1005 1006 1013 1019 1022 1.9405194
## 39 1003 1009 1011 1020 1022 1.9433170
## 40 1003 1010 1011 1019 1022 1.9527565
## 41 1003 1007 1015 1016 1024 1.9637630
## 42 1002 1008 1011 1019 1025 1.9662347
## 43 1003 1010 1012 1016 1024 1.9788621
## 44 1004 1010 1013 1016 1022 1.9891498
## 45 1003 1009 1012 1016 1025 2.0038790
## 46 1005 1006 1014 1018 1022 2.0118944
## 47 1001 1009 1013 1020 1022 2.0178475
## 48 1003 1010 1011 1017 1024 2.0486805
## 49 1003 1009 1011 1017 1025 2.0667909
## 50 1005 1006 1013 1017 1024 2.0817697
## 51 1001 1010 1013 1019 1022 2.0829855
## 52 1005 1008 1012 1016 1024 2.0943513
## 53 1001 1009 1013 1017 1025 2.1275456
## 54 1002 1009 1011 1020 1023 2.1364686
## 55 1001 1010 1013 1017 1024 2.1377212
## 56 1001 1010 1012 1018 1024 2.1601263
## 57 1004 1007 1011 1018 1025 2.1666866
## 58 1005 1009 1011 1018 1022 2.2323686
## 59 1003 1007 1015 1019 1021 2.2363180
## 60 1001 1010 1014 1018 1022 2.2395147
## 61 1002 1010 1011 1019 1023 2.2437344
## 62 1005 1008 1014 1017 1021 2.2640440
## 63 1003 1009 1015 1016 1022 2.2769286
## 64 1003 1006 1012 1019 1025 2.2784983
## 65 1003 1010 1012 1019 1021 2.2792302
## 66 1002 1009 1015 1018 1021 2.3107020
## 67 1002 1006 1014 1020 1023 2.3319116
## 68 1002 1008 1015 1016 1024 2.3450472
## 69 1004 1006 1013 1020 1022 2.3626482
## 70 1003 1009 1012 1020 1021 2.3728213
## 71 1004 1010 1013 1017 1021 2.4161909
## 72 1005 1007 1011 1019 1023 2.4303297
## 73 1004 1006 1013 1017 1025 2.4403362
## 74 1001 1007 1014 1020 1023 2.4594287
## 75 1002 1006 1015 1018 1024 2.4842527
## 76 1001 1008 1014 1020 1022 2.4992415
## 77 1002 1009 1015 1016 1023 2.5079605
## 78 1005 1008 1011 1019 1022 2.5093976
## 79 1001 1008 1014 1017 1025 2.5321129
## 80 1005 1009 1012 1018 1021 2.5754843
## 81 1004 1010 1011 1018 1022 2.6099980
## 82 1003 1006 1015 1019 1022 2.6432113
## 83 1005 1008 1011 1017 1024 2.6492482
## 84 1002 1008 1015 1019 1021 2.6501305
## 85 1001 1008 1012 1020 1024 2.6743575
## 86 1005 1006 1014 1017 1023 2.6758220
## 87 1003 1009 1015 1017 1021 2.6876740
## 88 1001 1007 1015 1018 1024 2.6914272
## 89 1004 1007 1011 1020 1023 2.6995192
## 90 1004 1007 1015 1018 1021 2.7190559
## 91 1005 1008 1012 1019 1021 2.7298626
## 92 1005 1009 1012 1016 1023 2.7483390
## 93 1004 1008 1012 1016 1025 2.7655323
## 94 1003 1006 1015 1017 1024 2.7807335
## 95 1001 1009 1012 1018 1025 2.7868758
## 96 1004 1008 1011 1020 1022 2.7979655
## 97 1005 1009 1011 1017 1023 2.8289796
## 98 1004 1008 1011 1017 1025 2.8402370
## 99 1001 1010 1014 1017 1023 2.8671448
## 100 1004 1007 1015 1016 1023 2.8822776
## 101 1004 1006 1012 1018 1025 2.9060308
## 102 1004 1010 1012 1018 1021 2.9144904
## 103 1001 1009 1015 1018 1022 2.9359005
## 104 1001 1008 1012 1019 1025 2.9392128
## 105 1002 1006 1015 1019 1023 2.9487574
## 106 1004 1008 1015 1016 1022 2.9642506
## 107 1005 1006 1012 1019 1023 2.9961082
## 108 1004 1008 1012 1020 1021 3.0372131
## 109 1004 1010 1012 1016 1023 3.0627098
## 110 1004 1006 1015 1018 1022 3.0712925
## 111 1004 1010 1011 1017 1023 3.0801534
## 112 1001 1007 1015 1019 1023 3.0852168
## 113 1001 1010 1012 1019 1023 3.1583306
## 114 1001 1008 1015 1019 1022 3.1614639
## 115 1001 1009 1012 1020 1023 3.1837762
## 116 1001 1008 1015 1017 1024 3.2462909
## 117 1004 1008 1015 1017 1021 3.2565423
## 118 1004 1006 1012 1020 1023 3.2886902
## 119 1001 1009 1015 1017 1023 3.3609837
## 120 1004 1006 1015 1017 1023 3.4583155
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.8 0.737 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated")
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
The p-values and ΔAIC of the connection are computed for all possible combinations of the isolated patches, creating a p-value and ΔAIC distributions. We keep as p-value and ΔAIC of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
# Compute stats for all patch combinations
isolated_combinations_sets_filtered = isolated_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = isolated_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(
Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_isolated_systems = as.character(NA)
) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_isolated_systems_input = isolated_combinations_sets_filtered %>%
filter(
metaecosystem_type %in% metaecosystem_type_i,
connection == "isolated",
set == set_input
) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(
time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "isolated" &
system_nr %in% system_nr_isolated_systems_input)
)
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input))
)
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(
iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
iterated_results_table$set[nrow(iterated_results_table)] = set_input
iterated_results_table$system_nr_isolated_systems[nrow(iterated_results_table)] = paste(system_nr_isolated_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.8e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.8e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
connection and connection : day)
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.3 0.282 none
iterated_results_table %>%
select(system_nr_isolated_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_isolated_systems ΔAIC_full
## 1 1052 1053 -0.11272141
## 2 1053 1052 -0.11272141
## 3 1048 1052 -0.09352802
## 4 1052 1048 -0.09352802
## 5 1047 1052 0.44975279
## 6 1052 1047 0.44975279
## 7 1048 1054 0.65487503
## 8 1054 1048 0.65487503
## 9 1047 1051 0.83275933
## 10 1051 1047 0.83275933
## 11 1047 1055 1.18971078
## 12 1055 1047 1.18971078
## 13 1048 1050 1.26756805
## 14 1050 1048 1.26756805
## 15 1049 1053 1.54078951
## 16 1053 1049 1.54078951
## 17 1051 1054 1.58837752
## 18 1054 1051 1.58837752
## 19 1046 1053 1.70905621
## 20 1053 1046 1.70905621
## 21 1050 1055 1.72028642
## 22 1055 1050 1.72028642
## 23 1049 1051 1.85003595
## 24 1051 1049 1.85003595
## 25 1046 1055 2.06900784
## 26 1055 1046 2.06900784
## 27 1046 1054 2.36391055
## 28 1054 1046 2.36391055
## 29 1049 1050 2.66198970
## 30 1050 1049 2.66198970
connection)
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the fixed model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the fixed model.")
model_stats_fixed = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA
)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.4 0.242 none
results_table = fill.results.table(
results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed
)
patch_type_i = c("Small isolated",
"Medium isolated",
"Large isolated",
"Small connected to small",
"Small connected to large",
"Medium connected to medium",
"Large connected to small",
"Large connected to large")
Richness
ds_patches %>%
filter(species_richness > 0,
patch_type == patch_type_i) %>%
ggplot(aes(x = species_richness,
y = bioarea_mm2_per_ml)) +
geom_point() +
xlim(0, length(protist_species))
for (patch_type in patch_type_i) {
plot.relationship.BEF(patch_type,
"species_richness") %>%
print()
}
Shannon
ds_patches %>%
filter(species_richness > 0,
patch_type == patch_type_i) %>%
ggplot(aes(x = shannon,
y = bioarea_mm2_per_ml)) +
geom_point()
for (patch_type in patch_type_i) {
plot.relationship.BEF(patch_type,
"shannon") %>%
print()
}
Evenness
ds_patches %>%
filter(species_richness > 0,
patch_type == patch_type_i) %>%
ggplot(aes(x = evenness_pielou,
y = bioarea_mm2_per_ml)) +
geom_point() +
xlim(0, 1)
for (patch_type in patch_type_i) {
plot.relationship.BEF(patch_type,
"evenness_pielou") %>%
print()
}
Pop dominance
for(species_input in protist_species_dominance){
print(ds_patches %>%
ggplot(aes(x = get(paste0(species_input)),
y = bioarea_mm2_per_ml)) +
geom_point() +
labs(x = paste0(species_input, "_dominance")))
}
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
## Warning: Removed 1 rows containing missing values (`geom_point()`).
for (patch_type in patch_type_i) {
plot.relationship.dominance.productivity(patch_type,
protist_species,
protist_species_dominance) %>%
print()
}
patch_type_i = c("Small isolated",
"Medium isolated",
"Large isolated")
response_variable = "bioarea_mm2_per_ml"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 251.0 271.0 -117.5 235.0 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.0 -0.6 0.0 0.6 2.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-03 0.04
## day 1e-04 0.01 1.00
## Residual 7e-01 0.86
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3.894 0.534 72.973 7 3e-10 ***
## day -0.183 0.028 39.417 -6 1e-07 ***
## patch_size_ml 0.034 0.021 72.973 2 0.11
## day:patch_size_ml 0.002 0.001 39.417 2 0.07 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.900
## patch_sz_ml -0.878 0.790
## dy:ptch_sz_ 0.790 -0.878 -0.900
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -20.2 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 252.2 269.7 -119.1 238.2 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.0 -0.6 0.0 0.6 3.1
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 7e-02 0.26
## day 5e-04 0.02 -0.80
## Residual 8e-01 0.87
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3.130 0.335 23.327 9 2e-09 ***
## day -0.137 0.015 15.000 -9 1e-07 ***
## patch_size_ml 0.068 0.009 15.000 8 2e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.723
## patch_sz_ml -0.606 0.000
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -19 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "shannon"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 1 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 65.7 85.6 -24.8 49.7 81
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.65 -0.63 0.03 0.72 2.46
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 9e-02 0.30
## day 4e-04 0.02 -1.00
## Residual 9e-02 0.29
## Number of obs: 89, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2e+00 2e-01 2e+01 6.3 7e-06 ***
## day -4e-02 1e-02 2e+01 -2.8 0.01 *
## patch_size_ml 2e-03 1e-02 2e+01 0.2 0.88
## day:patch_size_ml 1e-03 6e-04 2e+01 1.8 0.10 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.960
## patch_sz_ml -0.880 0.844
## dy:ptch_sz_ 0.846 -0.881 -0.960
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -18.6 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 66.5 83.9 -26.3 52.5 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.72 -0.57 0.03 0.66 2.49
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.36
## day 6e-04 0.02 -1.00
## Residual 9e-02 0.30
## Number of obs: 89, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.196 0.142 24.725 8 9e-09 ***
## day -0.018 0.008 14.809 -2 0.03 *
## patch_size_ml 0.018 0.003 53.014 7 2e-08 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.871
## patch_sz_ml -0.423 -0.010
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -17.7 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "species_richness"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 351.4 371.4 -167.7 335.4 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.8 -0.1 0.5 2.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.13
## day 1e-04 0.01 -1.00
## Residual 2e+00 1.56
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8.290 0.969 80.981 8.6 6e-13 ***
## day -0.294 0.051 44.221 -5.8 6e-07 ***
## patch_size_ml -0.026 0.038 80.981 -0.7 0.5
## day:patch_size_ml 0.008 0.002 44.221 3.9 3e-04 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.934
## patch_sz_ml -0.878 0.821
## dy:ptch_sz_ 0.821 -0.878 -0.934
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -25 < 0.001 **** very strong
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 360.9 378.4 -173.4 346.9 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.78 -0.75 -0.04 0.57 1.84
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1.804 1.34
## day 0.007 0.09 -1.00
## Residual 2.478 1.57
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.35 0.66 29.20 8 6e-09 ***
## day -0.12 0.03 15.34 -4 0.002 **
## patch_size_ml 0.11 0.01 52.47 8 6e-10 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.843
## patch_sz_ml -0.473 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -15.6 < 0.001 **** very strong
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "evenness_pielou"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 3 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -82.1 -62.4 49.1 -98.1 79
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.4 -0.5 0.0 0.6 2.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.121
## day 7e-05 0.009 -1.00
## Residual 2e-02 0.127
## Number of obs: 87, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8e-01 1e-01 2e+01 7.2 7e-07 ***
## day 2e-03 6e-03 2e+01 0.4 0.7
## patch_size_ml 2e-03 4e-03 2e+01 0.5 0.6
## day:patch_size_ml -1e-04 2e-04 2e+01 -0.5 0.6
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.954
## patch_sz_ml -0.882 0.840
## dy:ptch_sz_ 0.845 -0.884 -0.954
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.8 0.893 none
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -83.9 -66.6 48.9 -97.9 80
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.4 -0.5 0.0 0.6 2.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.122
## day 7e-05 0.009 -1.00
## Residual 2e-02 0.127
## Number of obs: 87, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8e-01 6e-02 3e+01 14.1 2e-15 ***
## day -3e-04 3e-03 2e+01 -0.1 0.9
## patch_size_ml 8e-05 1e-03 5e+01 0.1 0.9
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.830
## patch_sz_ml -0.469 -0.027
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.947 none
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
response_variable = "median_body_area_µm2"
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
plot.patches.boxplots(patch_type_i,
response_variable)
## Warning: Removed 1 rows containing non-finite values (`stat_boxplot()`).
save_results_in_table = TRUE
filtered_data = ds_patches %>%
filter(
metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable))
)
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_size_ml and
patch_size_ml : day)
full_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
patch_size_ml : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + patch_size_ml:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1365.8 1385.7 -674.9 1349.8 81
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.93 -0.59 -0.05 0.61 2.21
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+03 39
## day 2e+01 4 -1.00
## Residual 2e+05 473
## Number of obs: 89, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3130.1 299.2 77.6 10.5 <2e-16 ***
## day 28.1 15.9 51.0 1.8 0.08 .
## patch_size_ml 3.7 11.6 77.3 0.3 0.75
## day:patch_size_ml -0.3 0.6 50.8 -0.4 0.67
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day ptch__
## day -0.933
## patch_sz_ml -0.881 0.821
## dy:ptch_sz_ 0.825 -0.883 -0.933
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.8 0.892 none
patch_size_ml)
reduced_model = lmer(
get(response_variable) ~
day +
patch_size_ml +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_size_ml + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1363.9 1381.4 -675.0 1349.9 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.90 -0.54 -0.05 0.66 2.26
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+03 47
## day 2e+01 5 -1.00
## Residual 2e+05 473
## Number of obs: 89, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3235.5 169.3 82.9 19.1 <2e-16 ***
## day 22.1 7.5 45.9 2.9 0.005 **
## patch_size_ml -0.9 4.2 33.6 -0.2 0.829
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.771
## patch_sz_ml -0.546 -0.019
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Patch Type: ", filtered_data$patch_type, "<br>",
"Biomass density: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>",
"Species richness: ", filtered_data$species_richness, "<br>"),
hoverinfo = "text") %>%
plotly::layout(
title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.829 none
results_table = fill.results.table(results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small isolated"
## [1] "Medium isolated"
## [1] "Large isolated"
patch_type_i = c("Small connected to large",
"Small connected to small")
response_variable = "bioarea_mm2_per_ml"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 147.6 167.6 -65.8 131.6 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.99 -0.75 0.07 0.67 2.18
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.50
## day 4e-04 0.02 -1.00
## Residual 2e-01 0.47
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3.595 0.234 16.432 15.4
## day -0.136 0.011 21.354 -12.4
## patch_typeSmall connected to large 0.352 0.405 16.432 0.9
## day:patch_typeSmall connected to large 0.009 0.019 21.354 0.5
## Pr(>|t|)
## (Intercept) 4e-11 ***
## day 3e-11 ***
## patch_typeSmall connected to large 0.4
## day:patch_typeSmall connected to large 0.7
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Sctl
## day -0.952
## ptch_tySctl -0.577 0.550
## dy:ptc_Sctl 0.550 -0.577 -0.952
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 43.056 43.056 1 21.354 191.7506 3.851e-12 ***
## patch_type 0.170 0.170 1 16.432 0.7565 0.3970
## day:patch_type 0.046 0.046 1 21.354 0.2058 0.6546
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -10.4 0.001 *** strong
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 145.8 163.3 -65.9 131.8 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.98 -0.74 0.04 0.72 2.13
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.51
## day 4e-04 0.02 -1.00
## Residual 2e-01 0.47
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3.537 0.196 17.527 18 9e-13
## day -0.133 0.009 21.095 -15 1e-12
## patch_typeSmall connected to large 0.528 0.123 32.918 4 2e-04
##
## (Intercept) ***
## day ***
## patch_typeSmall connected to large ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.932
## ptch_tySctl -0.210 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -12.2 < 0.001 **** very strong
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 147.6 167.6 -65.8 131.6 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.99 -0.75 0.07 0.67 2.18
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.50
## day 4e-04 0.02 -1.00
## Residual 2e-01 0.47
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3.595 0.234 16.432 15.4
## day -0.136 0.011 21.354 -12.4
## patch_typeSmall connected to large 0.352 0.405 16.432 0.9
## day:patch_typeSmall connected to large 0.009 0.019 21.354 0.5
## Pr(>|t|)
## (Intercept) 4e-11 ***
## day 3e-11 ***
## patch_typeSmall connected to large 0.4
## day:patch_typeSmall connected to large 0.7
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Sctl
## day -0.952
## ptch_tySctl -0.577 0.550
## dy:ptc_Sctl 0.550 -0.577 -0.952
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 43.056 43.056 1 21.354 191.7506 3.851e-12 ***
## patch_type 0.170 0.170 1 16.432 0.7565 0.3970
## day:patch_type 0.046 0.046 1 21.354 0.2058 0.6546
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -10.4 0.001 *** strong
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 145.8 163.3 -65.9 131.8 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.98 -0.74 0.04 0.72 2.13
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.51
## day 4e-04 0.02 -1.00
## Residual 2e-01 0.47
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3.537 0.196 17.527 18 9e-13
## day -0.133 0.009 21.095 -15 1e-12
## patch_typeSmall connected to large 0.528 0.123 32.918 4 2e-04
##
## (Intercept) ***
## day ***
## patch_typeSmall connected to large ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.932
## ptch_tySctl -0.210 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -12.2 < 0.001 **** very strong
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "shannon"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 61.6 81.6 -22.8 45.6 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.3 -0.5 0.1 0.5 2.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-03 0.032
## day 1e-05 0.004 -1.00
## Residual 1e-01 0.309
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 1.742 0.113 76.059 15
## day -0.043 0.006 53.128 -7
## patch_typeSmall connected to large -0.355 0.195 76.059 -2
## day:patch_typeSmall connected to large 0.043 0.010 53.128 4
## Pr(>|t|)
## (Intercept) <2e-16 ***
## day 1e-09 ***
## patch_typeSmall connected to large 0.07 .
## day:patch_typeSmall connected to large 1e-04 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Sctl
## day -0.930
## ptch_tySctl -0.577 0.537
## dy:ptc_Sctl 0.537 -0.577 -0.930
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 1.75046 1.75046 1 53.128 18.3720 7.684e-05 ***
## patch_type 0.31502 0.31502 1 76.059 3.3063 0.0729497 .
## day:patch_type 1.63469 1.63469 1 53.128 17.1569 0.0001239 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -17.5 < 0.001 **** very strong
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 72.8 90.3 -29.4 58.8 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.2 -0.5 0.2 0.6 2.1
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 6e-02 0.24
## day 3e-04 0.02 -1.00
## Residual 1e-01 0.32
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.510 0.115 23.192 13 3e-12
## day -0.029 0.007 15.944 -4 4e-04
## patch_typeSmall connected to large 0.341 0.075 39.923 4 5e-05
##
## (Intercept) ***
## day ***
## patch_typeSmall connected to large ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.926
## ptch_tySctl -0.218 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -6.3 0.004 *** strong
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "species_richness"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 292.1 312.1 -138.1 276.1 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.9 -0.6 -0.1 0.5 2.7
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 2e-16 1e-08 NaN
## Residual 1e+00 1e+00
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 7.69 0.41 90.00 18.8
## day -0.22 0.02 90.00 -10.1
## patch_typeSmall connected to large -0.48 0.71 90.00 -0.7
## day:patch_typeSmall connected to large 0.12 0.04 90.00 3.2
## Pr(>|t|)
## (Intercept) <2e-16 ***
## day <2e-16 ***
## patch_typeSmall connected to large 0.500
## day:patch_typeSmall connected to large 0.002 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Sctl
## day -0.935
## ptch_tySctl -0.577 0.540
## dy:ptc_Sctl 0.540 -0.577 -0.935
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 91.772 91.772 1 90 72.8881 3.151e-13 ***
## patch_type 0.578 0.578 1 90 0.4589 0.499857
## day:patch_type 12.652 12.652 1 90 10.0485 0.002084 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -20.5 < 0.001 **** very strong
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 299.1 316.6 -142.6 285.1 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.83 -0.68 -0.06 0.50 2.54
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.619 0.79
## day 0.001 0.04 -1.00
## Residual 1.323 1.15
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 6.97 0.41 14.53 17 5e-11
## day -0.18 0.02 15.66 -9 2e-07
## patch_typeSmall connected to large 1.68 0.26 49.18 6 5e-08
##
## (Intercept) ***
## day ***
## patch_typeSmall connected to large ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.929
## ptch_tySctl -0.214 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -13.5 < 0.001 **** very strong
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "evenness_pielou"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -115.6 -96.2 65.8 -131.6 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1 -0.4 0.1 0.7 1.7
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 7e-18 3e-09 NaN
## Residual 1e-02 1e-01
## Number of obs: 84, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 0.743 0.042 84.000 18
## day 0.004 0.002 84.000 2
## patch_typeSmall connected to large -0.071 0.070 84.000 -1
## day:patch_typeSmall connected to large 0.005 0.004 84.000 1
## Pr(>|t|)
## (Intercept) <2e-16 ***
## day 0.07 .
## patch_typeSmall connected to large 0.31
## day:patch_typeSmall connected to large 0.22
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Sctl
## day -0.932
## ptch_tySctl -0.590 0.550
## dy:ptc_Sctl 0.561 -0.602 -0.934
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 0.142288 0.142288 1 84 11.6451 0.0009925 ***
## patch_type 0.012547 0.012547 1 84 1.0269 0.3138074
## day:patch_type 0.018337 0.018337 1 84 1.5007 0.2239857
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.4 0.445 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -116.1 -99.1 65.1 -130.1 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1 -0.5 0.1 0.7 1.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 1e-15 3e-08 NaN
## Residual 1e-02 1e-01
## Number of obs: 84, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7e-01 4e-02 8e+01 20.6 <2e-16
## day 6e-03 2e-03 8e+01 3.2 0.002
## patch_typeSmall connected to large 9e-03 3e-02 8e+01 0.4 0.718
##
## (Intercept) ***
## day **
## patch_typeSmall connected to large
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.899
## ptch_tySctl -0.224 -0.042
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.717 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "median_body_area_µm2"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1420.1 1440.1 -702.1 1404.1 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.90 -0.66 0.02 0.73 1.90
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 9e+04 307
## day 3e+02 19 -1.00
## Residual 3e+05 578
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3e+03 2e+02 2e+01 13.2
## day 4e+01 1e+01 2e+01 2.9
## patch_typeSmall connected to large 1e+02 4e+02 2e+01 0.3
## day:patch_typeSmall connected to large 5e-01 2e+01 2e+01 0.0
## Pr(>|t|)
## (Intercept) 1e-11 ***
## day 0.01 **
## patch_typeSmall connected to large 0.75
## day:patch_typeSmall connected to large 0.98
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Sctl
## day -0.946
## ptch_tySctl -0.577 0.546
## dy:ptc_Sctl 0.546 -0.577 -0.946
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 3897822 3897822 1 15.70 11.6655 0.003625 **
## patch_type 34717 34717 1 20.88 0.1039 0.750402
## day:patch_type 216 216 1 15.70 0.0006 0.980048
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.9 0.567 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1418.1 1435.6 -702.1 1404.1 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.90 -0.66 0.02 0.73 1.89
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 9e+04 307
## day 3e+02 19 -1.00
## Residual 3e+05 578
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3056 194 23 16 8e-14
## day 37 10 16 4 0.002
## patch_typeSmall connected to large 139 130 70 1 0.288
##
## (Intercept) ***
## day **
## patch_typeSmall connected to large
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.922
## ptch_tySctl -0.223 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.9 0.287 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small connected to large"
## [1] "Small connected to small"
patch_type_i = c("Small connected to small",
"Small isolated")
response_variable = "bioarea_mm2_per_ml"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 179.0 199.0 -81.5 163.0 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.7 -0.7 0.0 0.6 3.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.51
## day 5e-04 0.02 -1.00
## Residual 3e-01 0.57
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3.92 0.37 16.09 10.5
## day -0.15 0.02 21.17 -8.3
## patch_typeSmall connected to small -0.33 0.46 16.09 -0.7
## day:patch_typeSmall connected to small 0.01 0.02 21.17 0.7
## Pr(>|t|)
## (Intercept) 1e-08 ***
## day 4e-08 ***
## patch_typeSmall connected to small 0.5
## day:patch_typeSmall connected to small 0.5
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Scts
## day -0.952
## ptch_tyScts -0.816 0.777
## dy:ptc_Scts 0.777 -0.816 -0.952
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 54.390 54.390 1 21.167 165.4017 1.797e-11 ***
## patch_type 0.167 0.167 1 16.090 0.5089 0.4859
## day:patch_type 0.147 0.147 1 21.167 0.4457 0.5116
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.5 0.778 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 177.5 195.0 -81.7 163.5 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.6 -0.7 0.0 0.6 3.7
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.53
## day 5e-04 0.02 -1.00
## Residual 3e-01 0.57
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3.73 0.24 20.52 15.7 7e-13
## day -0.14 0.01 20.57 -13.3 2e-11
## patch_typeSmall connected to small -0.04 0.14 41.57 -0.2 0.8
##
## (Intercept) ***
## day ***
## patch_typeSmall connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.876
## ptch_tyScts -0.393 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.805 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 179.0 199.0 -81.5 163.0 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.7 -0.7 0.0 0.6 3.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.51
## day 5e-04 0.02 -1.00
## Residual 3e-01 0.57
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3.92 0.37 16.09 10.5
## day -0.15 0.02 21.17 -8.3
## patch_typeSmall connected to small -0.33 0.46 16.09 -0.7
## day:patch_typeSmall connected to small 0.01 0.02 21.17 0.7
## Pr(>|t|)
## (Intercept) 1e-08 ***
## day 4e-08 ***
## patch_typeSmall connected to small 0.5
## day:patch_typeSmall connected to small 0.5
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Scts
## day -0.952
## ptch_tyScts -0.816 0.777
## dy:ptc_Scts 0.777 -0.816 -0.952
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 54.390 54.390 1 21.167 165.4017 1.797e-11 ***
## patch_type 0.167 0.167 1 16.090 0.5089 0.4859
## day:patch_type 0.147 0.147 1 21.167 0.4457 0.5116
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.5 0.778 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 177.5 195.0 -81.7 163.5 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.6 -0.7 0.0 0.6 3.7
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.53
## day 5e-04 0.02 -1.00
## Residual 3e-01 0.57
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3.73 0.24 20.52 15.7 7e-13
## day -0.14 0.01 20.57 -13.3 2e-11
## patch_typeSmall connected to small -0.04 0.14 41.57 -0.2 0.8
##
## (Intercept) ***
## day ***
## patch_typeSmall connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.876
## ptch_tyScts -0.393 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.805 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "shannon"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 89.5 109.4 -36.7 73.5 81
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.86 -0.55 0.06 0.58 2.40
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.11
## day 1e-04 0.01 -1.00
## Residual 1e-01 0.35
## Number of obs: 89, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 1.787 0.193 47.907 9.3
## day -0.048 0.011 26.275 -4.4
## patch_typeSmall connected to small -0.045 0.234 47.492 -0.2
## day:patch_typeSmall connected to small 0.004 0.013 25.695 0.3
## Pr(>|t|)
## (Intercept) 3e-12 ***
## day 2e-04 ***
## patch_typeSmall connected to small 0.8
## day:patch_typeSmall connected to small 0.7
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Scts
## day -0.928
## ptch_tyScts -0.822 0.763
## dy:ptc_Scts 0.767 -0.826 -0.927
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 5.9530 5.9530 1 25.695 47.6357 2.674e-07 ***
## patch_type 0.0046 0.0046 1 47.492 0.0370 0.8484
## day:patch_type 0.0133 0.0133 1 25.695 0.1067 0.7465
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.8 0.907 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 87.6 105.0 -36.8 73.6 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.86 -0.57 0.08 0.65 2.33
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.11
## day 1e-04 0.01 -1.00
## Residual 1e-01 0.35
## Number of obs: 89, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.738 0.124 67.649 14.0 <2e-16
## day -0.045 0.006 24.893 -7.3 1e-07
## patch_typeSmall connected to small 0.026 0.087 33.116 0.3 0.8
##
## (Intercept) ***
## day ***
## patch_typeSmall connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.815
## ptch_tyScts -0.461 -0.016
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.767 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "species_richness"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 333.5 353.5 -158.7 317.5 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.3 -0.8 -0.2 0.5 2.7
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 9e-11 1e-05
## day 4e-13 7e-07 -1.00
## Residual 2e+00 1e+00
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 8.32 0.73 90.00 11.4
## day -0.25 0.04 90.00 -6.7
## patch_typeSmall connected to small -0.63 0.89 90.00 -0.7
## day:patch_typeSmall connected to small 0.04 0.05 90.00 0.8
## Pr(>|t|)
## (Intercept) <2e-16 ***
## day 2e-09 ***
## patch_typeSmall connected to small 0.5
## day:patch_typeSmall connected to small 0.4
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Scts
## day -0.935
## ptch_tyScts -0.816 0.763
## dy:ptc_Scts 0.763 -0.816 -0.935
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 204.298 204.298 1 90 102.4855 <2e-16 ***
## patch_type 1.004 1.004 1 90 0.5036 0.4797
## day:patch_type 1.338 1.338 1 90 0.6710 0.4149
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.3 0.707 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 332.2 349.7 -159.1 318.2 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.3 -0.8 -0.1 0.6 2.5
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 9e-10 3e-05
## day 5e-12 2e-06 -1.00
## Residual 2e+00 1e+00
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.86 0.47 90.00 16.7 <2e-16
## day -0.23 0.02 90.00 -10.4 <2e-16
## patch_typeSmall connected to small 0.05 0.32 90.00 0.2 0.9
##
## (Intercept) ***
## day ***
## patch_typeSmall connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.836
## ptch_tyScts -0.448 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.875 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "evenness_pielou"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -68.5 -49.3 42.2 -84.5 73
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.7 -0.3 0.0 0.6 2.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 7e-04 0.027
## day 8e-06 0.003 -1.00
## Residual 2e-02 0.141
## Number of obs: 81, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 0.870 0.076 61.647 12
## day -0.005 0.004 29.903 -1
## patch_typeSmall connected to small -0.128 0.093 61.775 -1
## day:patch_typeSmall connected to small 0.009 0.005 30.919 2
## Pr(>|t|)
## (Intercept) <2e-16 ***
## day 0.25
## patch_typeSmall connected to small 0.17
## day:patch_typeSmall connected to small 0.09 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Scts
## day -0.925
## ptch_tyScts -0.815 0.753
## dy:ptc_Scts 0.755 -0.816 -0.925
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 0.000460 0.000460 1 30.919 0.0231 0.88009
## patch_type 0.037879 0.037879 1 61.775 1.9063 0.17235
## day:patch_type 0.060612 0.060612 1 30.919 3.0505 0.09064 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1 0.22 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -67.7 -50.9 40.8 -81.7 74
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.8 -0.4 0.1 0.7 2.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-03 0.048
## day 2e-05 0.004 -1.00
## Residual 2e-02 0.141
## Number of obs: 81, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8e-01 5e-02 6e+01 15.1 <2e-16
## day 1e-03 3e-03 2e+01 0.5 0.6
## patch_typeSmall connected to small 2e-02 4e-02 3e+01 0.5 0.6
##
## (Intercept) ***
## day
## patch_typeSmall connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.816
## ptch_tyScts -0.464 -0.010
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.8 0.662 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "median_body_area_µm2"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1420.0 1439.9 -702.0 1404.0 81
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.53 -0.60 -0.08 0.86 1.81
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e+05 341
## day 5e+02 23 -1.00
## Residual 4e+05 625
## Number of obs: 89, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3143 362 24 8.7
## day 24 20 18 1.2
## patch_typeSmall connected to small -84 441 24 -0.2
## day:patch_typeSmall connected to small 12 24 17 0.5
## Pr(>|t|)
## (Intercept) 6e-09 ***
## day 0.3
## patch_typeSmall connected to small 0.9
## day:patch_typeSmall connected to small 0.6
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Scts
## day -0.945
## ptch_tyScts -0.821 0.776
## dy:ptc_Scts 0.780 -0.825 -0.944
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 2363748 2363748 1 17.341 6.0523 0.02466 *
## patch_type 14117 14117 1 24.108 0.0361 0.85080
## day:patch_type 101258 101258 1 17.341 0.2593 0.61704
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3 0.599 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1418.2 1435.6 -702.1 1404.2 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.47 -0.57 -0.07 0.85 1.83
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e+05 347
## day 5e+02 23 -1.00
## Residual 4e+05 626
## Number of obs: 89, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2999 228 34 13.2 7e-15
## day 32 12 17 2.8 0.01
## patch_typeSmall connected to small 128 145 56 0.9 0.38
##
## (Intercept) ***
## day *
## patch_typeSmall connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.853
## ptch_tyScts -0.412 -0.019
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.2 0.381 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small connected to small"
## [1] "Small isolated"
patch_type_i = c("Medium isolated",
"Medium connected to medium")
response_variable = "bioarea_mm2_per_ml"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 281.6 301.6 -132.8 265.6 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.37 -0.65 -0.05 0.66 2.10
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.51
## day 3e-04 0.02 -1.00
## Residual 1e+00 1.04
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 5.119 0.580 17.638 8.8
## day -0.170 0.029 25.546 -5.9
## patch_typeMedium connected to medium 0.915 0.711 17.638 1.3
## day:patch_typeMedium connected to medium -0.004 0.035 25.546 -0.1
## Pr(>|t|)
## (Intercept) 7e-08 ***
## day 4e-06 ***
## patch_typeMedium connected to medium 0.2
## day:patch_typeMedium connected to medium 0.9
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Mctm
## day -0.936
## ptch_tyMctm -0.816 0.765
## dy:ptc_Mctm 0.765 -0.816 -0.936
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 101.588 101.588 1 25.546 94.2646 4.667e-10 ***
## patch_type 1.787 1.787 1 17.638 1.6580 0.2145
## day:patch_type 0.015 0.015 1 25.546 0.0135 0.9084
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -4.6 0.014 ** moderate
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 279.6 297.1 -132.8 265.6 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.37 -0.66 -0.05 0.65 2.11
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.51
## day 3e-04 0.02 -1.00
## Residual 1e+00 1.04
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.17 0.37 23.97 14 7e-13
## day -0.17 0.02 25.46 -10 1e-10
## patch_typeMedium connected to medium 0.84 0.25 20.02 3 0.003
##
## (Intercept) ***
## day ***
## patch_typeMedium connected to medium **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.839
## ptch_tyMctm -0.445 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -6.6 0.003 *** strong
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "shannon"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 47.2 67.2 -15.6 31.2 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.3 -0.6 0.1 0.7 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-02 0.183
## day 4e-05 0.006 -1.00
## Residual 8e-02 0.278
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 1.182 0.165 20.526 7.2
## day 0.009 0.008 34.267 1.1
## patch_typeMedium connected to medium 0.179 0.202 20.526 0.9
## day:patch_typeMedium connected to medium -0.010 0.010 34.267 -1.0
## Pr(>|t|)
## (Intercept) 5e-07 ***
## day 0.3
## patch_typeMedium connected to medium 0.4
## day:patch_typeMedium connected to medium 0.3
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Mctm
## day -0.936
## ptch_tyMctm -0.816 0.764
## dy:ptc_Mctm 0.764 -0.816 -0.936
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 0.048608 0.048608 1 34.267 0.6280 0.4336
## patch_type 0.060641 0.060641 1 20.526 0.7834 0.3863
## day:patch_type 0.082004 0.082004 1 34.267 1.0594 0.3106
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.9 0.578 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 46.2 63.7 -16.1 32.2 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 0.2 0.7 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 4e-02 0.194
## day 5e-05 0.007 -1.00
## Residual 8e-02 0.279
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 1.313 0.108 24.036 12.2
## day 0.002 0.005 30.559 0.5
## patch_typeMedium connected to medium -0.017 0.071 25.203 -0.2
## Pr(>|t|)
## (Intercept) 9e-12 ***
## day 0.6
## patch_typeMedium connected to medium 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.843
## ptch_tyMctm -0.440 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.817 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "species_richness"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 354.3 374.3 -169.1 338.3 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.6 0.0 0.8 2.5
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.462
## day 3e-06 0.002 -1.00
## Residual 2e+00 1.534
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 7.28 0.82 41.14 8.9
## day -0.09 0.04 74.62 -2.1
## patch_typeMedium connected to medium 0.41 1.00 41.14 0.4
## day:patch_typeMedium connected to medium 0.02 0.05 74.62 0.4
## Pr(>|t|)
## (Intercept) 4e-11 ***
## day 0.04 *
## patch_typeMedium connected to medium 0.69
## day:patch_typeMedium connected to medium 0.69
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Mctm
## day -0.909
## ptch_tyMctm -0.816 0.742
## dy:ptc_Mctm 0.742 -0.816 -0.909
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 21.3935 21.3935 1 74.621 9.0856 0.003519 **
## patch_type 0.3898 0.3898 1 41.136 0.1655 0.686222
## day:patch_type 0.3732 0.3732 1 74.621 0.1585 0.691689
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.8 0.2 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 352.4 369.9 -169.2 338.4 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.10 -0.61 -0.03 0.73 2.56
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.461
## day 3e-06 0.002 -1.00
## Residual 2e+00 1.536
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.03 0.55 44.26 13 <2e-16
## day -0.07 0.02 74.60 -3 0.003
## patch_typeMedium connected to medium 0.77 0.42 15.01 2 0.084
##
## (Intercept) ***
## day **
## patch_typeMedium connected to medium .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.784
## ptch_tyMctm -0.507 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.1 0.08 * weak
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "evenness_pielou"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -106.3 -86.3 61.2 -122.3 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.2 -0.7 0.2 0.8 1.7
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 8e-12 3e-06
## day 2e-14 1e-07 -1.00
## Residual 2e-02 1e-01
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 0.618 0.063 90.000 9.8
## day 0.010 0.003 90.000 3.1
## patch_typeMedium connected to medium 0.044 0.077 90.000 0.6
## day:patch_typeMedium connected to medium -0.006 0.004 90.000 -1.6
## Pr(>|t|)
## (Intercept) 8e-16 ***
## day 0.002 **
## patch_typeMedium connected to medium 0.573
## day:patch_typeMedium connected to medium 0.113
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Mctm
## day -0.935
## ptch_tyMctm -0.816 0.763
## dy:ptc_Mctm 0.763 -0.816 -0.935
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 0.184092 0.184092 1 90 12.2383 0.0007298 ***
## patch_type 0.004812 0.004812 1 90 0.3199 0.5730908
## day:patch_type 0.038515 0.038515 1 90 2.5605 0.1130708
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5 0.011 ** moderate
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -105.8 -88.3 59.9 -119.8 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.7 0.1 0.8 1.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-12 1e-06
## day 3e-15 6e-08 -1.00
## Residual 2e-02 1e-01
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 0.695 0.041 90.000 17
## day 0.006 0.002 90.000 3
## patch_typeMedium connected to medium -0.072 0.028 90.000 -3
## Pr(>|t|)
## (Intercept) <2e-16 ***
## day 0.003 **
## patch_typeMedium connected to medium 0.011 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.836
## ptch_tyMctm -0.448 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -4.4 0.011 ** moderate
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "median_body_area_µm2"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
## Warning: Model failed to converge with 1 negative eigenvalue: -3.7e+01
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1441.4 1461.4 -712.7 1425.4 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.4 -0.4 0.0 0.5 4.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0
## day 1e+02 11 NaN
## Residual 4e+05 636
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3278 327 75 10.0
## day 24 18 79 1.3
## patch_typeMedium connected to medium 82 400 75 0.2
## day:patch_typeMedium connected to medium -11 22 79 -0.5
## Pr(>|t|)
## (Intercept) 2e-15 ***
## day 0.2
## patch_typeMedium connected to medium 0.8
## day:patch_typeMedium connected to medium 0.6
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Mctm
## day -0.895
## ptch_tyMctm -0.816 0.731
## dy:ptc_Mctm 0.731 -0.816 -0.895
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 1129166 1129166 1 79.079 2.7954 0.09849 .
## patch_type 16826 16826 1 75.000 0.0417 0.83883
## day:patch_type 109948 109948 1 79.079 0.2722 0.60333
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.5 0.763 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1439.6 1457.1 -712.8 1425.6 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -4.4 -0.4 0.1 0.4 4.1
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e+03 53
## day 2e+02 14 -1.00
## Residual 4e+05 636
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3401 223 88 15.3 <2e-16
## day 16 10 38 1.6 0.1
## patch_typeMedium connected to medium -103 176 20 -0.6 0.6
##
## (Intercept) ***
## day
## patch_typeMedium connected to medium
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.765
## ptch_tyMctm -0.526 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.7 0.564 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Medium isolated"
## [1] "Medium connected to medium"
patch_type_i = c("Large connected to small",
"Large connected to large")
response_variable = "bioarea_mm2_per_ml"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 240.8 260.8 -112.4 224.8 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.23 -0.62 0.02 0.51 2.20
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.917 0.96
## day 0.002 0.04 -1.00
## Residual 0.627 0.79
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 5.475 0.418 15.044 13.1
## day -0.147 0.020 15.669 -7.2
## patch_typeLarge connected to small -0.027 0.724 15.044 0.0
## day:patch_typeLarge connected to small -0.007 0.035 15.669 -0.2
## Pr(>|t|)
## (Intercept) 1e-09 ***
## day 2e-06 ***
## patch_typeLarge connected to small 1.0
## day:patch_typeLarge connected to small 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lcts
## day -0.965
## ptch_tyLcts -0.577 0.557
## dy:ptc_Lcts 0.557 -0.577 -0.965
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 45.506 45.506 1 15.669 72.5264 2.856e-07 ***
## patch_type 0.001 0.001 1 15.044 0.0014 0.9712
## day:patch_type 0.023 0.023 1 15.669 0.0372 0.8495
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.2 0.685 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 238.8 256.3 -112.4 224.8 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.23 -0.62 0.02 0.50 2.18
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.921 0.96
## day 0.002 0.04 -1.00
## Residual 0.627 0.79
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.52 0.35 16.00 15.9 3e-11
## day -0.15 0.02 15.66 -9.0 1e-07
## patch_typeLarge connected to small -0.16 0.19 40.65 -0.9 0.4
##
## (Intercept) ***
## day ***
## patch_typeLarge connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.949
## ptch_tyLcts -0.182 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.3 0.397 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "shannon"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 23.2 43.2 -3.6 7.2 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.8 -0.5 0.0 0.7 1.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-03 0.074
## day 2e-05 0.004 -1.00
## Residual 6e-02 0.250
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 1.500 0.094 25.418 16.0
## day -0.004 0.005 16.288 -0.8
## patch_typeLarge connected to small -0.207 0.163 25.418 -1.3
## day:patch_typeLarge connected to small 0.011 0.009 16.288 1.3
## Pr(>|t|)
## (Intercept) 9e-15 ***
## day 0.5
## patch_typeLarge connected to small 0.2
## day:patch_typeLarge connected to small 0.2
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lcts
## day -0.939
## ptch_tyLcts -0.577 0.542
## dy:ptc_Lcts 0.542 -0.577 -0.939
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 0.012907 0.012907 1 16.288 0.2065 0.6555
## patch_type 0.100997 0.100997 1 25.418 1.6161 0.2151
## day:patch_type 0.110436 0.110436 1 16.288 1.7671 0.2021
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.3 0.431 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 22.9 40.4 -4.5 8.9 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.8 -0.5 0.1 0.7 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.114
## day 5e-05 0.007 -1.00
## Residual 6e-02 0.250
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1e+00 8e-02 2e+01 17.4 7e-15
## day 5e-05 4e-03 2e+01 0.0 1.0
## patch_typeLarge connected to small -5e-03 6e-02 7e+01 -0.1 0.9
##
## (Intercept) ***
## day
## patch_typeLarge connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.919
## ptch_tyLcts -0.228 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.932 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "species_richness"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 319.0 339.0 -151.5 303.0 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.5 0.1 0.5 2.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.127 0.36
## day 0.001 0.04 -1.00
## Residual 1.574 1.25
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 7.22 0.47 48.53 15.3
## day -0.05 0.03 25.62 -1.8
## patch_typeLarge connected to small -0.70 0.81 48.53 -0.9
## day:patch_typeLarge connected to small 0.04 0.05 25.62 1.0
## Pr(>|t|)
## (Intercept) <2e-16 ***
## day 0.09 .
## patch_typeLarge connected to small 0.40
## day:patch_typeLarge connected to small 0.34
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lcts
## day -0.921
## ptch_tyLcts -0.577 0.532
## dy:ptc_Lcts 0.532 -0.577 -0.921
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 1.8895 1.8895 1 25.619 1.2004 0.2834
## patch_type 1.1533 1.1533 1 48.528 0.7327 0.3962
## day:patch_type 1.4823 1.4823 1 25.619 0.9417 0.3409
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.1 0.628 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 317.9 335.4 -152.0 303.9 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.5 0.2 0.5 2.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.168 0.41
## day 0.002 0.04 -1.00
## Residual 1.583 1.26
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 6.97 0.40 50.73 17.3 <2e-16
## day -0.03 0.02 23.41 -1.5 0.2
## patch_typeLarge connected to small 0.03 0.32 28.02 0.1 0.9
##
## (Intercept) ***
## day
## patch_typeLarge connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.891
## ptch_tyLcts -0.262 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.933 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "evenness_pielou"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -148.7 -128.7 82.4 -164.7 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1 -0.5 0.2 0.6 2.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 6e-03 0.079
## day 2e-05 0.004 -1.00
## Residual 9e-03 0.093
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 0.755 0.042 15.114 17.9
## day 0.002 0.002 15.145 0.7
## patch_typeLarge connected to small -0.044 0.073 15.114 -0.6
## day:patch_typeLarge connected to small 0.002 0.004 15.145 0.7
## Pr(>|t|)
## (Intercept) 1e-11 ***
## day 0.5
## patch_typeLarge connected to small 0.6
## day:patch_typeLarge connected to small 0.5
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lcts
## day -0.958
## ptch_tyLcts -0.577 0.553
## dy:ptc_Lcts 0.553 -0.577 -0.958
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 0.0189475 0.0189475 1 15.145 2.1734 0.1609
## patch_type 0.0032234 0.0032234 1 15.114 0.3698 0.5522
## day:patch_type 0.0037138 0.0037138 1 15.145 0.4260 0.5237
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.6 0.809 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -150.3 -132.8 82.2 -164.3 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1 -0.4 0.2 0.6 2.1
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 7e-03 0.082
## day 2e-05 0.004 -1.00
## Residual 9e-03 0.093
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7e-01 4e-02 2e+01 20.8 4e-13
## day 2e-03 2e-03 2e+01 1.3 0.2
## patch_typeLarge connected to small 1e-03 2e-02 7e+01 0.1 1.0
##
## (Intercept) ***
## day
## patch_typeLarge connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.940
## ptch_tyLcts -0.197 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.953 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "median_body_area_µm2"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1399.6 1419.6 -691.8 1383.6 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.82 -0.67 -0.03 0.49 2.74
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 8e+04 278
## day 5e+02 23 -1.00
## Residual 2e+05 498
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 2389 202 30 11.9
## day 72 12 19 6.1
## patch_typeLarge connected to small 47 349 30 0.1
## day:patch_typeLarge connected to small -6 20 19 -0.3
## Pr(>|t|)
## (Intercept) 8e-13 ***
## day 8e-06 ***
## patch_typeLarge connected to small 0.9
## day:patch_typeLarge connected to small 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lcts
## day -0.934
## ptch_tyLcts -0.577 0.539
## dy:ptc_Lcts 0.539 -0.577 -0.934
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 11210561 11210561 1 19.055 45.1503 1.986e-06 ***
## patch_type 4563 4563 1 29.831 0.0184 0.8931
## day:patch_type 18765 18765 1 19.055 0.0756 0.7863
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.8 0.91 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1397.7 1415.2 -691.9 1383.7 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.79 -0.66 -0.04 0.49 2.76
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 8e+04 280
## day 5e+02 23 -1.00
## Residual 2e+05 498
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2419 170 34 14.2 7e-16
## day 70 10 19 7.2 8e-07
## patch_typeLarge connected to small -42 125 37 -0.3 0.7
##
## (Intercept) ***
## day ***
## patch_typeLarge connected to small
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.906
## ptch_tyLcts -0.245 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.735 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Large connected to small"
## [1] "Large connected to large"
patch_type_i = c("Large connected to large",
"Large isolated")
response_variable = "bioarea_mm2_per_ml"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 247.1 267.1 -115.6 231.1 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.83 -0.64 0.01 0.51 2.37
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.325 0.57
## day 0.001 0.03 -0.83
## Residual 0.635 0.80
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 4.95 0.48 15.00 10.2
## day -0.09 0.03 15.00 -3.4
## patch_typeLarge connected to large 0.53 0.59 15.00 0.9
## day:patch_typeLarge connected to large -0.06 0.03 15.00 -1.8
## Pr(>|t|)
## (Intercept) 4e-08 ***
## day 0.004 **
## patch_typeLarge connected to large 0.385
## day:patch_typeLarge connected to large 0.089 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lctl
## day -0.903
## ptch_tyLctl -0.816 0.737
## dy:ptc_Lctl 0.737 -0.816 -0.903
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 34.918 34.918 1 15 55.0124 2.159e-06 ***
## patch_type 0.508 0.508 1 15 0.8008 0.38499
## day:patch_type 2.100 2.100 1 15 3.3084 0.08894 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.3 0.071 * weak
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 248.1 265.6 -117.1 234.1 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.02 -0.58 -0.02 0.48 2.41
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.535 0.73
## day 0.002 0.04 -0.90
## Residual 0.635 0.80
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.59 0.35 20.62 16 4e-13
## day -0.13 0.02 15.00 -8 1e-06
## patch_typeLarge connected to large -0.44 0.25 15.00 -2 0.1
##
## (Intercept) ***
## day ***
## patch_typeLarge connected to large
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.801
## ptch_tyLctl -0.488 0.000
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.3 0.13 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "shannon"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 5.5 25.5 5.3 -10.5 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.76 -0.60 -0.06 0.78 1.59
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.148
## day 8e-05 0.009 -1.00
## Residual 5e-02 0.221
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 1.831 0.132 16.742 14
## day -0.017 0.007 15.185 -2
## patch_typeLarge connected to large -0.332 0.161 16.742 -2
## day:patch_typeLarge connected to large 0.013 0.009 15.185 2
## Pr(>|t|)
## (Intercept) 1e-10 ***
## day 0.03 *
## patch_typeLarge connected to large 0.06 .
## day:patch_typeLarge connected to large 0.15
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lctl
## day -0.951
## ptch_tyLctl -0.816 0.777
## dy:ptc_Lctl 0.777 -0.816 -0.951
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 0.27607 0.27607 1 15.184 5.6629 0.03085 *
## patch_type 0.20643 0.20643 1 16.742 4.2345 0.05553 .
## day:patch_type 0.11339 0.11339 1 15.184 2.3259 0.14780
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.5 0.064 * weak
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 5.6 23.1 4.2 -8.4 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.73 -0.67 -0.01 0.77 1.68
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-02 0.18
## day 1e-04 0.01 -1.00
## Residual 5e-02 0.22
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.675 0.087 21.683 19 5e-15
## day -0.008 0.004 15.074 -2 0.08
## patch_typeLarge connected to large -0.098 0.050 66.017 -2 0.05
##
## (Intercept) ***
## day .
## patch_typeLarge connected to large .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.886
## ptch_tyLctl -0.379 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.3 0.068 * weak
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "species_richness"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
## Warning: Model failed to converge with 1 negative eigenvalue: -4.4e+00
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
## Warning: Model failed to converge with 1 negative eigenvalue: -7.2e-01
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 302.6 322.6 -143.3 286.6 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1 -0.6 0.1 0.5 2.3
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0.00
## day 5e-04 0.02 NaN
## Residual 1e+00 1.13
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 7.55 0.58 72.97 13.0
## day -0.02 0.03 34.65 -0.7
## patch_typeLarge connected to large -0.34 0.71 72.97 -0.5
## day:patch_typeLarge connected to large -0.03 0.04 34.65 -0.7
## Pr(>|t|)
## (Intercept) <2e-16 ***
## day 0.5
## patch_typeLarge connected to large 0.6
## day:patch_typeLarge connected to large 0.5
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lctl
## day -0.888
## ptch_tyLctl -0.816 0.725
## dy:ptc_Lctl 0.725 -0.816 -0.888
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 3.9602 3.9602 1 34.648 3.1048 0.08688 .
## patch_type 0.2862 0.2862 1 72.965 0.2244 0.63713
## day:patch_type 0.5569 0.5569 1 34.648 0.4366 0.51313
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.9 0.085 * weak
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 301.0 318.5 -143.5 287.0 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1 -0.6 0.2 0.5 2.3
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0.00
## day 5e-04 0.02 NaN
## Residual 1e+00 1.13
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.83 0.40 65.64 20 <2e-16
## day -0.04 0.02 31.73 -2 0.04
## patch_typeLarge connected to large -0.75 0.33 15.15 -2 0.04
##
## (Intercept) ***
## day *
## patch_typeLarge connected to large *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.744
## ptch_tyLctl -0.545 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2.5 0.034 ** moderate
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "evenness_pielou"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -155.5 -135.5 85.8 -171.5 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.4 -0.5 0.1 0.6 1.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 9e-03 0.095
## day 3e-05 0.006 -1.00
## Residual 8e-03 0.088
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 0.911 0.062 16.136 15
## day -0.007 0.003 15.077 -2
## patch_typeLarge connected to large -0.155 0.076 16.136 -2
## day:patch_typeLarge connected to large 0.009 0.004 15.077 2
## Pr(>|t|)
## (Intercept) 9e-11 ***
## day 0.05 .
## patch_typeLarge connected to large 0.06 .
## day:patch_typeLarge connected to large 0.05 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lctl
## day -0.966
## ptch_tyLctl -0.816 0.789
## dy:ptc_Lctl 0.789 -0.816 -0.966
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 0.013969 0.013969 1 15.077 1.8244 0.19672
## patch_type 0.032213 0.032213 1 16.136 4.2069 0.05686 .
## day:patch_type 0.033595 0.033595 1 15.077 4.3875 0.05350 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.1 0.145 none
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -153.7 -136.2 83.8 -167.7 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.3 -0.5 0.1 0.7 1.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.119
## day 5e-05 0.007 -1.00
## Residual 8e-03 0.088
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.809 0.042 18.815 19.1 9e-14
## day -0.001 0.002 15.031 -0.6 0.6
## patch_typeLarge connected to large -0.002 0.020 72.123 -0.1 0.9
##
## (Intercept) ***
## day
## patch_typeLarge connected to large
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.925
## ptch_tyLctl -0.310 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.914 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
response_variable = "median_body_area_µm2"
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
patch_type and
patch_type : day)
full_model = lmer(
get(response_variable) ~
day +
patch_type +
patch_type : day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + patch_type:day +
## (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1383.4 1403.4 -683.7 1367.4 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.02 -0.62 -0.07 0.49 3.03
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e+05 315
## day 5e+02 22 -1.00
## Residual 2e+05 457
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3236 274 24 12
## day 17 16 17 1
## patch_typeLarge connected to large -848 336 24 -2
## day:patch_typeLarge connected to large 54 19 17 3
## Pr(>|t|)
## (Intercept) 2e-11 ***
## day 0.29
## patch_typeLarge connected to large 0.02 *
## day:patch_typeLarge connected to large 0.01 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day p_Lctl
## day -0.946
## ptch_tyLctl -0.816 0.773
## dy:ptc_Lctl 0.773 -0.816 -0.946
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
anova(full_model)
## Type III Analysis of Variance Table with Satterthwaite's method
## Sum Sq Mean Sq NumDF DenDF F value Pr(>F)
## day 4437335 4437335 1 17.105 21.2356 0.0002469 ***
## patch_type 1330309 1330309 1 23.488 6.3664 0.0188303 *
## day:patch_type 1646085 1646085 1 17.105 7.8776 0.0120813 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Create resid vs fitted (if your number of fitted values is lower than the number of rows in the filtered dataset, it's probably because you have NAs)
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(full_model))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2.5 0.039 ** moderate
patch_type)
reduced_model = lmer(
get(response_variable) ~
day +
patch_type +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead")
)
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ day + patch_type + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1387.8 1405.3 -686.9 1373.8 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.9 -0.6 -0.2 0.5 3.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 497
## day 1e+03 33 -1.00
## Residual 2e+05 459
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2651 201 24 13.2 2e-12
## day 54 11 16 4.8 2e-04
## patch_typeLarge connected to large 30 108 52 0.3 0.8
##
## (Intercept) ***
## day ***
## patch_typeLarge connected to large
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) day
## day -0.897
## ptch_tyLctl -0.360 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" System nr: ", filtered_data$culture_ID, "<br>",
"Day: ", filtered_data$day, "<br>",
"Meta-ecosystem: ", filtered_data$patch_type, "<br>",
"Tot Biomass: ", round(filtered_data$bioarea_mm2_per_ml, digits = 2), "<br>"),
hoverinfo = "text") %>%
plotly::layout(
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals")
)
res_vs_fit
qqnorm(resid(reduced_model))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.808 none
results_table = fill.results.table(
results_table,
response_variable,
patch_type_i,
model_stats_full,
model_stats_fixed
)
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Large connected to large"
## [1] "Large isolated"
# Construct plots
response_variable_list = NULL
n_of_plots = 3
response_variable_list[[1]] = "mean_shannon"
response_variable_list[[2]] = "bray_curtis"
response_variable_list[[3]] = "metaecosystem_richness"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium isolated",
"Small-Large meta-ecosystem",
"Small-Large isolated")
legend_row_n_input = 2
p = NULL
for (i in 1: n_of_plots) {
p[[i]] = plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable_list[[i]],
legend_row_n_input) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm"))
}
# Combine plots
p_combined = ggarrange(
p[[1]] +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text", size = size_legend) +
font("ylab", size = size_y_axis),
p[[2]] +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text", size = size_legend) +
font("ylab", size = size_y_axis),
p[[3]] +
font("legend.text", size = size_legend) +
font("xlab", size = size_y_axis) +
font("ylab", size = size_y_axis) +
scale_x_continuous(breaks = unique(ds_metaecosystems$day)),
heights = c(0.8,0.8,1),
nrow = 3,
common.legend = TRUE,
align = "v",
labels = c("(a)", "(b)", "(c)"),
label.x = 0.1,
label.y = 0.8
)
# Show combined plots
p_combined
# Save combined plots
png(
file = here("results", "figures", disturbance_global_input, "paper", "metaecosystems_diversity.png"),
width = paper_width,
height = paper_height,
units = paper_units,
res = paper_res
)
p_combined
dev.off()
# Plots parameters
legend_row_n_input = 2
x_min = -0.2
x_max = 30
y_min_alpha = 0.3
y_max_alpha = 2.1
y_min_beta = 0
y_max_beta = 1
size_y_axis = 22
metaecosystem_type_all = c("Medium-Medium isolated",
"Medium-Medium meta-ecosystem",
"Small-Large isolated",
"Small-Large meta-ecosystem")
# Construct alpha plots
response_variable = "mean_shannon"
alpha_plots = NULL
alpha_plots[[1]] = plot.empty.plot.presentations(y_min_alpha,
y_max_alpha,
"mean_shannon")
for (i in 1:length(metaecosystem_type_all)) {
alpha_plots[[i+1]] = plot.metaecos.points.presentations(ds_metaecosystems,
metaecosystem_type_all[1:i],
response_variable,
legend_row_n_input) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm"),
legend.position = "none") +
scale_y_continuous(labels = scales::number_format(accuracy = 0.01)) +
xlim(x_min, x_max) +
ylim(y_min_alpha, y_max_alpha)
}
# Construct beta plots
response_variable = "bray_curtis"
beta_plots = NULL
beta_plots[[1]] = plot.empty.plot.presentations(y_min_beta,
y_max_beta,
"bray_curtis")
for (i in 1:length(metaecosystem_type_all)) {
beta_plots[[i+1]] = plot.metaecos.points.presentations(ds_metaecosystems,
metaecosystem_type_all[1:i],
response_variable,
legend_row_n_input) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm"),
legend.position = "none") +
scale_y_continuous(labels = scales::number_format(accuracy = 0.01)) +
xlim(x_min, x_max) +
ylim(y_min_beta, y_max_beta)
}
# Combine plots
p_combined = NULL
alpha_beta_plot_number = data.frame(alpha = as.double(c("1", "2", "3", "4", "5", "5", "5", "5", "5")),
beta = as.double(c("1", "1", "1", "1", "1", "2", "3", "4", "5")))
for(i in 1:length(alpha_beta_plot_number$alpha)){
p_combined[[i]] = ggarrange(
alpha_plots[[alpha_beta_plot_number$alpha[i]]] +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank(),
axis.text = element_text(size = presentation_axes_size)) +
font("legend.text", size = size_legend) +
font("ylab", size = size_y_axis),
NULL,
beta_plots[[alpha_beta_plot_number$beta[i]]] +
theme(axis.text = element_text(size = presentation_axes_size)) +
font("legend.text", size = size_legend) +
font("xlab", size = size_y_axis) +
font("ylab", size = size_y_axis),
heights = c(0.999, 0.001, 0.999),
nrow = 3,
align = "v",
label.x = 0.1,
label.y = 0.8)
}
# Save combined plots
for(i in 1:length(alpha_beta_plot_number$alpha)){
png(file = here("results", "figures", disturbance_global_input, "presentations", paste0(i, "_metaecos_diversity.png")),
width = presentation_figure_width,
height = presentation_figure_height,
units = presentation_figure_units,
res = presentation_figure_res)
print(p_combined[[i]])
dev.off()
}
# Construct plots
response_variable_list = NULL
response_variable_list[[1]] = "bioarea_mm2_per_ml"
response_variable_list[[2]] = "shannon"
patch_type_i = c("Small isolated",
"Medium isolated",
"Large isolated")
legend_row_n_input = 2
p = NULL
for (i in 1:2) {
p[[i]] = plot.patches.points(ds_patches,
patch_type_i,
response_variable_list[[i]],
legend_row_n_input) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm"))
}
# Combine plots
p_combined = ggarrange(
p[[1]] +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text", size = size_legend) +
font("ylab", size = size_y_axis),
p[[2]] +
font("legend.text", size = size_legend) +
font("xlab", size = size_y_axis) +
font("ylab", size = size_y_axis) +
scale_x_continuous(breaks = unique(ds_patches$day)),
heights = c(0.8, 0.8, 1),
nrow = 2,
align = "v",
labels = c("(a)", "(b)"),
label.x = 0.1,
label.y = 0.8,
common.legend = TRUE
)
# Show combined plots
p_combined
# Save combined plots
png(
file = here("results", "figures", disturbance_global_input, "paper", "patches_biomass.png"),
width = paper_width,
height = paper_height,
units = paper_units,
res = paper_res
)
p_combined
dev.off()
evaporation.test = read.csv(here("data", "evaporation_test","evaporation_test_right.csv"), header = TRUE)
evaporation.test %>%
ggplot(aes (x = as.character(water_pipetted),
y = weight_water_evaporated,
group = interaction(water_pipetted, as.character(rack)),
fill = as.character(rack))) +
geom_boxplot(width = boxplot_width) +
labs(x = "Water volume (ml)" ,
y = "Evaporation (g)",
fill = "Rack replicate")
evaporation.test = read.csv(here("data", "evaporation_test", "evaporation_test_fill_nofill.csv"), header = TRUE)
evaporation.test %>%
ggplot(aes (x = all_tubes_water,
y = weight_water_evaporated)) +
geom_boxplot(width = boxplot_width) +
labs(x = "Water in the other 10 tubes" ,
y = "Evaporation (g)",
caption = "When all tubes were filled, they were filled with 6.75 ml of deionised water.")
rm(list = ls())
setwd("/media/mendel-himself/ID_061_Ema2/PatchSizePilot/training")
# load package
# library(devtools)
# install_github("femoerman/bemovi", ref="master")
library(bemovi)
library(parallel)
library(doParallel)
library(foreach)
#Define memory to be allocated
memory.alloc <- 240000 #-needs_to_be_specified
memory.per.identifier <- 40000 #-needs_to_be_specified
memory.per.linker <- 5000 #-needs_to_be_specified
memory.per.overlay <- 60000 #-needs_to_be_specified
# UNIX
# set paths to tools folder and particle linker
tools.path <-
"/home/mendel-himself/bemovi_tools/" #-needs_to_be_specified
to.particlelinker <- tools.path
# directories and file names
to.data <- paste(getwd(), "/", sep = "")
video.description.folder <- "0_video_description/"
video.description.file <- "video_description.txt"
raw.video.folder <- "1_raw/"
raw.avi.folder <- "1a_raw_avi/"
metadata.folder <- "1b_raw_meta/"
particle.data.folder <- "2_particle_data/"
trajectory.data.folder <- "3_trajectory_data/"
temp.overlay.folder <- "4a_temp_overlays/"
overlay.folder <- "4_overlays/"
merged.data.folder <- "5_merged_data/"
ijmacs.folder <- "ijmacs/"
######################################################################
# VIDEO PARAMETERS
# video frame rate (in frames per second)
fps <- 25 #-needs_to_be_specified
# length of video (in frames)
total_frames <- 125 #-needs_to_be_specified
#Dimensions of the videos in pixels
width = 2048 #-needs_to_be_specified
height = 2048 #-needs_to_be_specified
# measured volume (in microliter) #-needs_to_be_specified
measured_volume <-
34.4 # for Leica M205 C with 1.6 fold magnification, sample height 0.5 mm and Hamamatsu Orca Flash 4
#measured_volume <- 14.9 # for Nikon SMZ1500 with 2 fold magnification, sample height 0.5 mm and Canon 5D Mark III
# size of a pixel (in micrometer) #-needs_to_be_specified
pixel_to_scale <-
4.05 # for Leica M205 C with 1.6 fold magnification, sample height 0.5 mm and Hamamatsu Orca Flash 4
#pixel_to_scale <- 3.79 # for Nikon SMZ1500 with 2 fold magnification, sample height 0.5 mm and Canon 5D Mark III
# specify video file format (one of "avi","cxd","mov","tiff")
# bemovi only works with avi and cxd. other formats are reformated to avi below
video.format <- "cxd" #-needs_to_be_specified
# setup
difference.lag <- 10
thresholds <- c(13, 255) # don't change the second value
# thresholds <- c(50,255)
# MORE PARAMETERS (USUALLY NOT CHANGED)
######################################################################
# FILTERING PARAMETERS
# optimized for Perfex Pro 10 stereomicrocope with Perfex SC38800 (IDS UI-3880LE-M-GL) camera
# tested stereomicroscopes: Perfex Pro 10, Nikon SMZ1500, Leica M205 C
# tested cameras: Perfex SC38800, Canon 5D Mark III, Hamamatsu Orca Flash 4
# tested species: Tet, Col, Pau, Pca, Eug, Chi, Ble, Ceph, Lox, Spi
# min and max size: area in pixels
particle_min_size <- 10
particle_max_size <- 1000
# number of adjacent frames to be considered for linking particles
trajectory_link_range <- 3
# maximum distance a particle can move between two frames
trajectory_displacement <- 16
# these values are in the units defined by the parameters above: fps (seconds), measured_volume (microliters) and pixel_to_scale (micometers)
filter_min_net_disp <- 25
filter_min_duration <- 1
filter_detection_freq <- 0.1
filter_median_step_length <- 3
######################################################################
# VIDEO ANALYSIS
#Check if all tools are installed, and if not install them
check_tools_folder(tools.path)
#Ensure computer has permission to run bftools
system(paste0("chmod a+x ", tools.path, "bftools/bf.sh"))
system(paste0("chmod a+x ", tools.path, "bftools/bfconvert"))
system(paste0("chmod a+x ", tools.path, "bftools/showinf"))
# Convert files to compressed avi (takes approx. 2.25 minutes per video)
convert_to_avi(
to.data,
raw.video.folder,
raw.avi.folder,
metadata.folder,
tools.path,
fps,
video.format
)
# TESTING
# check file format and naming
# check_video_file_names(to.data,raw.avi.folder,video.description.folder,video.description.file)
# check whether the thresholds make sense (set "dark backgroud" and "red")
#check_threshold_values(to.data, raw.avi.folder, ijmacs.folder, 2, difference.lag, thresholds, tools.path, memory.alloc)
# identify particles
locate_and_measure_particles(
to.data,
raw.avi.folder,
particle.data.folder,
difference.lag,
min_size = particle_min_size,
max_size = particle_max_size,
thresholds = thresholds,
tools.path,
memory = memory.alloc,
memory.per.identifier = memory.per.identifier,
max.cores = detectCores() - 1
)
# link the particles
link_particles(
to.data,
particle.data.folder,
trajectory.data.folder,
linkrange = trajectory_link_range,
disp = trajectory_displacement,
start_vid = 1,
memory = memory.alloc,
memory_per_linkerProcess = memory.per.linker,
raw.avi.folder,
max.cores = detectCores() - 1,
max_time = 1
)
# merge info from description file and data
merge_data(
to.data,
particle.data.folder,
trajectory.data.folder,
video.description.folder,
video.description.file,
merged.data.folder
)
# load the merged data
load(paste0(to.data, merged.data.folder, "Master.RData"))
# filter data: minimum net displacement, their duration, the detection frequency and the median step length
trajectory.data.filtered <-
filter_data(
trajectory.data,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
# summarize trajectory data to individual-based data
morph_mvt <-
summarize_trajectories(
trajectory.data.filtered,
calculate.median = F,
write = T,
to.data,
merged.data.folder
)
# get sample level info
summarize_populations(
trajectory.data.filtered,
morph_mvt,
write = T,
to.data,
merged.data.folder,
video.description.folder,
video.description.file,
total_frames
)
# create overlays for validation
create.subtitle.overlays(
to.data,
traj.data = trajectory.data.filtered,
raw.video.folder,
raw.avi.folder,
temp.overlay.folder,
overlay.folder,
fps,
vid.length = total_frames / fps,
width,
height,
tools.path = tools.path,
overlay.type = "number",
video.format
)
# Create overlays (old method)
create_overlays(
traj.data = trajectory.data.filtered,
to.data = to.data,
merged.data.folder = merged.data.folder,
raw.video.folder = raw.avi.folder,
temp.overlay.folder = "4a_temp_overlays_old/",
overlay.folder = "4_overlays_old/",
width = width,
height = height,
difference.lag = difference.lag,
type = "traj",
predict_spec = F,
contrast.enhancement = 1,
IJ.path = "/home/mendel-himself/bemovi_tools",
memory = memory.alloc,
max.cores = detectCores() - 1,
memory.per.overlay = memory.per.overlay
)
########################################################################
# some cleaning up
#system("rm -r 2_particle_data")
#system("rm -r 3_trajectory_data")
#system("rm -r 4a_temp_overlays")
system("rm -r ijmacs")
########################################################################
rm(list = ls())
#install.packages("e1071",dependencies = T)
#install.packages("devtools",dependencies = T)
#install_github("pennekampster/bemovi", ref="master")
#library(devtools)
library(bemovi)
library(e1071)
library("here")
library("tidyverse")
time_points_in_experiment = c("t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7")
for (time_point in time_points_in_experiment) {
#Folder names and paths
video.description.folder = "0_video_description/"
video.description.file = "video_description.txt"
merged.data.folder = "5_merged_data/"
monocultures_folder_path = here("biomass_analysis", "training", "")
mixed_cultures_folder_path = here("biomass_analysis", time_point, "")
#Parameters used in the video analysis script
fps = 25
nsv = 5
measured_volume = 34.4
pixel_to_scale = 4.05
filter_min_net_disp = 25
filter_min_duration = 1
filter_detection_freq = 0.1
filter_median_step_length = 3
#Load master dataset of mono-cultures
load(paste0(
monocultures_folder_path,
merged.data.folder,
"Master.RData"
))
trajectory.data_monocultures = trajectory.data
rm(trajectory.data)
#Filter the master data of mono-cultures using the same parameters as in the videos analysis script
trajectory.data_monocultures.filtered = filter_data(
trajectory.data_monocultures,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
#Go from trajectory data to individuals data
morph_mvt = summarize_trajectories(
data = trajectory.data_monocultures.filtered,
calculate.median = FALSE,
write = TRUE,
to.data = monocultures_folder_path,
merged.data.folder = merged.data.folder
) %>%
mutate(comment = NULL)
training_data = morph_mvt[complete.cases(morph_mvt), ]
svm1 = svm(
factor(species) ~
mean_grey +
sd_grey +
mean_area +
sd_area +
mean_perimeter +
mean_turning +
sd_turning +
sd_perimeter +
mean_major +
sd_major +
mean_minor +
sd_minor +
mean_ar +
sd_ar +
duration +
max_net +
net_disp +
net_speed +
gross_disp +
max_step +
min_step +
sd_step +
sd_gross_speed +
max_gross_speed +
min_gross_speed ,
data = training_data,
probability = T,
na.action = na.pass
)
confusion.matrix = table(svm1$fitted, training_data$species)
confusion.matrix.nd = confusion.matrix
diag(confusion.matrix.nd) = 0
svm1$confusion = cbind(confusion.matrix,
class.error = rowSums(confusion.matrix.nd) / rowSums(confusion.matrix))
print(paste("Confusion matrix of time point", time_point))
print(svm1$confusion)
species.names = unique(trajectory.data_monocultures$species)
load(paste0(
mixed_cultures_folder_path,
merged.data.folder,
"Master.RData"
))
trajectory.data_mixed = trajectory.data
rm(trajectory.data)
trajectory.data_mixed.filtered = filter_data(
trajectory.data_mixed,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
morph_mvt = summarize_trajectories(
data = trajectory.data_mixed.filtered,
calculate.median = FALSE,
write = TRUE,
to.data = mixed_cultures_folder_path,
merged.data.folder = merged.data.folder
)[, which(colnames(morph_mvt) != "Col_manual")] %>%
mutate(comment = NULL)
data.to.predict = morph_mvt[complete.cases(morph_mvt),]
p.id = predict(object = svm1,
data.to.predict,
type = "response")
data.to.predict$predicted_species = as.character(p.id)
pop.data = summarize_populations(
traj.data = trajectory.data_monocultures.filtered,
sum.data = morph_mvt,
write = TRUE,
to.data = mixed_cultures_folder_path,
merged.data.folder = merged.data.folder,
video.description.folder = video.description.folder,
video.description.file = video.description.file,
total_frame = fps * nsv
)
species.density = function(sample_output,
indiv_predicted,
species_names,
total_frames,
mv = measured_volume) {
samples = unique(indiv_predicted$file)
sp.dens = matrix(0,
nrow(sample_output),
length(species_names))
colnames(sp.dens) = species_names
for (i in 1:length(samples)) {
indiv = subset(indiv_predicted, file == samples[i])
spec = unique(indiv$predicted_species)
for (j in 1:length(spec)) {
all.indiv.sp = subset(indiv,
predicted_species == spec[j])
dens = sum(all.indiv.sp$N_frames) / total_frames / mv
sp.dens[which(sample_output$file == as.character(samples[i])), which(species_names == spec[j])] = dens
}
}
return(cbind(sample_output, sp.dens))
}
output = species.density(
pop.data,
data.to.predict,
species.names,
total_frames = fps * nsv,
mv = measured_volume
)
file_name = paste0("species_ID_", time_point, ".csv")
write.csv(output,
here("biomass_analysis", "species_ID_results", file_name))
rm(output)
}
## Time difference of 1.8 mins
Check that disturbance_global_input is what you set:
print(paste0("Disturbance = ", disturbance_global_input))
## [1] "Disturbance = low"
If you want to change a certain part of the code:
#Rmd script
cd /Users/ema/Documents/GitHub/PatchSize/r_files
sed -i '' 's/old_string/new_string/g' *.Rmd
#R script
cd /Users/ema/Documents/GitHub/PatchSize/r_files/functions
sed -i '' 's/old_string/new_string/g' *.R
dput()
The only type of patch where all cultures crashed was small connected to small at high disturbance.